Create a chat session
POST /v1/sessions — Provision a new session id; the agent loop scopes per-session state (frozen snapshot, scenario cache, shadow recorder) t
POST /v1/sessions
Provision a new session id; the agent loop scopes per-session state (frozen snapshot, scenario cache, shadow recorder) to this id.
| Method | POST |
| Path | /v1/sessions |
| Auth | Authorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set |
| Category | sessions |
Request body
{ "title": "BTC analysis" }Response body
{ "ok": true, "data": { "id": "sess_abc", "created_at": "..." } }