Documentation Index
Fetch the complete documentation index at: https://docs.medera.info/llms.txt
Use this file to discover all available pages before exploring further.
1. Start a therapy session
curl -X POST https://api.medera.ai/api/co-therapy-sessions \
-H "Authorization: Bearer $TOKEN" \
-d '{
"patientId": "pat_abc",
"providers": ["prv_xyz"],
"scheduledStart": "2026-05-28T15:00:00Z",
"scheduledDurationMinutes": 50,
"videoPlatform": "telehealth",
"recordingEnabled": true,
"deploymentId": "dep_abc"
}'
2. Analyze a recorded session
curl -X POST https://api.medera.ai/api/multimodal-therapy/analyze-session \
-H "Authorization: Bearer $TOKEN" \
-F "session_id=ses_abc" \
-F "audio_file=@session.wav" \
-F "video_file=@session.mp4" \
-F "transcript=The patient reports..." \
-F "duration_seconds=2400" \
-F "patient_id=pat_abc"
The response is the canonical payload — flat ClinicalMetric envelopes for the frontend plus the full RDoC profile.
3. Audio-only
curl -X POST https://api.medera.ai/api/multimodal-therapy/analyze-audio-only \
-H "Authorization: Bearer $TOKEN" \
-F "session_id=ses_abc" \
-F "audio_file=@session.wav"