Quickstart Guide
October 3, 2025 ยท View on GitHub
Get started with BondMCP in 5 minutes. This guide will walk you through your first API request.
Step 1: Sign Up
- Visit BondMCP Dashboard
- Create your account with email and password
- Verify your email address
Step 2: Get Your API Key
- Log in to your dashboard
- Navigate to Settings โ API Keys
- Click Generate New API Key
- Copy and securely store your API key
Step 3: Make Your First Request
Using cURL
curl -X POST https://t9xbkyb7mg.us-east-1.awsapprunner.com/mcp/health-ai/analyze \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Analyze cardiovascular risk factors for a 45-year-old patient",
"analysis_type": "risk_assessment"
}'
Using Python
import requests
API_KEY = "your_api_key_here"
BASE_URL = "https://t9xbkyb7mg.us-east-1.awsapprunner.com/mcp"
response = requests.post(
f"{BASE_URL}/health-ai/analyze",
headers={"Authorization": f"Bearer {API_KEY}"},
json={
"prompt": "Analyze cardiovascular risk factors for a 45-year-old patient",
"analysis_type": "risk_assessment"
}
)
print(response.json())
Using JavaScript
const API_KEY = 'your_api_key_here';
const BASE_URL = 'https://t9xbkyb7mg.us-east-1.awsapprunner.com/mcp';
const response = await fetch(`${BASE_URL}/health-ai/analyze`, {
method: 'POST',
headers: {
'Authorization': `Bearer ${API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
prompt: 'Analyze cardiovascular risk factors for a 45-year-old patient',
analysis_type: 'risk_assessment'
})
});
const data = await response.json();
console.log(data);
Expected Response
{
"analysis": "Based on the patient profile...",
"confidence_score": 0.92,
"recommendations": [
"Monitor blood pressure regularly",
"Consider lipid panel screening"
],
"cost": 0.05
}
Next Steps
- Authentication - Learn about JWT tokens and security
- Pricing & Plans - Explore available tiers
- Health AI APIs - Discover all 5 health AI endpoints
Need Help?
- Email: support@bondmcp.com
- Documentation: https://docs.bondmcp.com