API Documentation
Integrate the Master Brain API into your applications. Query experts, get intelligent insights, and build powerful AI-driven experiences.
1. Get Your API Key
Generate an API key from your dashboard to authenticate requests.
2. Make Your First Call
Use the Master Brain query endpoint to get intelligent responses.
3. Scale Up
Upgrade to Pro or Elite for higher depth levels and quota.
Master Brain API
The Master Brain API provides access to our multi-expert AI system. Query specialists in Finance, Healthcare, Law, and Technology - or use the Ensemble endpoint to synthesize insights across all disciplines.
Depth Levels (1-5)
- 1: Simple factual answers
- 2: Explanations with reasoning
- 3: Multi-factor analysis
- 4: Strategic predictions
- 5: Wisdom-level insights
Tier Limits
- Free: Depth 1, 1K units/month
- Pro: Depth 1-3, 10K units/month
- Elite: Depth 1-5, 100K units/month
- Enterprise: Unlimited
Quick Start Example
const response = await fetch('/api/v1/master-brain/query', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
query: 'What are the tax implications of stock options?',
expertKey: 'finance',
depth: 3,
}),
});
const data = await response.json();
console.log(data.response);