---
title: "Get session"
method: GET
path: "/api/v1/sessions/{id}"
tags: ["Sessions"]
---

# Get session

`GET /api/v1/sessions/{id}`

## Response `200`

Session detail

- SessionDetail — Session metadata plus the highest run event sequence the session's event stream has reached. The conversation itself is held by the server's durable session record and is not returned over the API.
  - `id` string, required — Durable session identifier.
  - `run_id` string, required
  - `title` string, nullable
  - `status` 'idle' | 'running' | 'failed', required
  - `model` string, nullable — Canonical model ID selected when the session was created.
  - `provider` string — LLM provider identifier.
  - `active_turn` SessionTurn, required — Currently active durable session turn.
    - `id` string, required — Durable session turn identifier.
    - `started_at` string, date-time, required
    - `input` string, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `last_seq` integer, required

## Other responses

- `404` — Session not found

## Changes

- **2026-09-11** `1aa32dec61aa` — 1 breaking
  - removed the required property `messages` from the response with the `200` status
- **2026-09-09** `64d7e2ed03af` — 1 info
  - added the required property `messages` to the response with the `200` status
- **2026-09-08** `9aaa5d3a64cc` — 1 breaking
  - removed the required property `messages` from the response with the `200` status
- **2026-07-24** `08c227b95b1a` — 1 info
  - added the optional property `provider` to the response with the `200` status
- **2026-07-24** `ea20de899fa9` — 1 warning
  - removed the optional property `provider` from the response with the `200` status

[Full history](https://skmtc.dev/fabro-sh/apis/fabro-run-api/changes/api/v1/sessions/:id/get.md)

---

[API](https://skmtc.dev/fabro-sh/apis/fabro-run-api.md) · [All operations](https://skmtc.dev/fabro-sh/apis/fabro-run-api/llms.txt) · [OpenAPI document](https://skmtc.dev/fabro-sh/apis/fabro-run-api/revisions/1258a4cf33df?raw)
