Developer API
Build with MindHealthFlow
Integrate AI-powered clinical documentation into your existing workflows
RESTful API
Simple, predictable REST endpoints with JSON responses
HIPAA Compliant
All API calls are encrypted and logged for compliance
API Key Auth
Secure authentication with rotating API keys
SDKs Available
Official SDKs for Python, JavaScript, and more
Quick Start
Generate your first AI clinical note in seconds:
curl -X POST https://api.mindhealthflow.ai/v1/notes/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"session_type": "individual_therapy",
"duration_minutes": 50,
"presenting_concerns": ["anxiety", "work_stress"],
"interventions": ["CBT", "mindfulness"],
"client_response": "positive engagement"
}'API Endpoints
POST
/api/v1/notes/generateGenerate AI clinical notes from session dataPOST
/api/v1/transcribeTranscribe audio recordings to textGET
/api/v1/clientsList all clients in your practicePOST
/api/v1/sessionsCreate a new therapy sessionGET
/api/v1/analyticsRetrieve practice analytics and metricsRate Limits
| Free Tier | 100 req/day |
| Professional | 10,000 req/day |
| Enterprise | Unlimited |
Authentication
All API requests require a valid API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY