---
title: "List run sessions"
method: GET
path: "/api/v1/runs/{id}/sessions"
tags: ["Sessions"]
---

# List run sessions

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

## Query parameters

- `page[limit]` integer
- `page[offset]` integer
- `order` 'updated_desc' | 'created_desc'

## Response `200`

Ask Fabro sessions for the run

- PaginatedSessionList — Paginated list of sessions.
  - `data` SessionSummary[], required
    - `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
  - `meta` PaginationMeta, required — Pagination metadata included in every paginated response.
    - `has_more` boolean, required — Whether additional pages of results are available.
    - `total` integer — Total number of items matching the current filters. Optional — only populated by endpoints that compute the full count cheaply (e.g. in-memory filtering). When omitted, clients should rely on `has_more` and cursor through pages.

---

[API](https://skmtc.net/fabro-sh/apis/fabro-run-api.md) · [All operations](https://skmtc.net/fabro-sh/apis/fabro-run-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fabro-sh/fabro-run-api/versions/bee030053823/schema)
