1. Start a therapy session
2. Analyze a recorded session
ClinicalMetric envelopes for the frontend plus the full neurobehavioral profile.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run an end-to-end multimodal analysis
curl -X POST https://api.medera.info/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" }'
curl -X POST https://api.medera.info/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"
ClinicalMetric envelopes for the frontend plus the full neurobehavioral profile.
curl -X POST https://api.medera.info/api/multimodal-therapy/analyze-audio-only \ -H "Authorization: Bearer $TOKEN" \ -F "session_id=ses_abc" \ -F "audio_file=@session.wav"