Everything you need to integrate with the MidasAI platform. From simple API calls to complex OAuth flows and marketplace integrations.
Get up and running in 4 simple steps
Create an API key in your developer dashboard
Install our SDK for your preferred language
Test your integration with a simple API call
Start building your application
Learn the basics of integrating with MidasAI APIs
Common integration patterns and tools
Complete API reference and examples
Example API call to get started
// 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);