> ## 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.

# Multimodal Quickstart

> Run an end-to-end multimodal analysis

## 1. Start a therapy session

```bash theme={"system"}
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" }'
```

## 2. Analyze a recorded session

```bash theme={"system"}
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"
```

The response is the canonical payload — flat `ClinicalMetric` envelopes for the frontend plus the full neurobehavioral profile.

## 3. Audio-only

```bash theme={"system"}
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"
```
