API Documentation

Everything you need to integrate with the MidasAI platform. From simple API calls to complex OAuth flows and marketplace integrations.

Quick Start

Get up and running in 4 simple steps

1

Get API Key

Create an API key in your developer dashboard

2

Choose SDK

Install our SDK for your preferred language

3

Make First Call

Test your integration with a simple API call

4

Build Your App

Start building your application

Try It Now

Example API call to get started

JavaScript
// Install the MidasAI SDK
npm install @midasai/sdk

// Make your first API call
import { MidasAI } from '@midasai/sdk';

const client = new MidasAI({
  apiKey: 'your-api-key-here'
});

const skills = await client.skills.list();
console.log(skills);

Ready to Build?

Join thousands of developers building on the MidasAI platform