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

# POST /api/therapy-sessions

> Create a therapy session

Backend route:

```text theme={"system"}

POST /api/therapy-sessions

```

### Request body

```json theme={"system"}
{
  "patient_id": "pat_abc",
  "provider_id": "prv_xyz",
  "template_id": "tpl_psychotherapy",
  "session_date": "2026-05-28T15:00:00Z",
  "duration_minutes": 50,
  "chief_complaints": ["depressed mood"],
  "session_goals": ["..."],
  "status": "scheduled"
}

```

For co-therapy (multi-provider) sessions, use `POST /api/co-therapy-sessions` instead.

AI Services real-time clinical session:

```text theme={"system"}

POST /api/clinical/start

```
