---
title: "List task run screenshots"
method: GET
path: "/task-runs/{run_id}/screenshots"
tags: ["Task Runs"]
---

# List task run screenshots

`GET /task-runs/{run_id}/screenshots`

Returns a paginated list of agent screenshots captured during a task run, oldest first. Each item includes a pre-signed download URL and the agent's reasoning at the time of capture.

## Path parameters

- `run_id` string, required

## Query parameters

- `limit` union
  - integer
  - string, int32
- `cursor` string

## Response `200`

OK

- PaginatedResponseOfListScreenshotItemResponse
  - `data` ListScreenshotItemResponse[] — Array of screenshot items for the current page, oldest first.
    - `id` string, required — Unique identifier for the storage item, prefixed with `stor_`.
    - `object` string, required — Always `screenshot`.
    - `file_name` string, required — Original file name.
    - `file_type` string, required — MIME type of the screenshot (e.g. `image/png`, `image/jpeg`).
    - `file_size` union, required — File size in bytes.
      - integer
      - string, int64
    - `url` string, nullable — Pre-signed URL to download the screenshot. Time-limited; re-fetch the item if it expires.
    - `reasoning` string, nullable — Agent reasoning captured at the time of this screenshot, if any.
    - `created_at` string, date-time, required — When the screenshot was captured.
  - `has_more` boolean — `true` if there are more results beyond this page.
  - `next_cursor` string, nullable — Opaque cursor string to pass as the `cursor` query parameter on the next request. `null` when there are no more pages.
  - `request_id` string, nullable — Unique identifier for the API request.

## Other responses

- `400` — Bad request — validation error or malformed input.
- `401` — Unauthorized.
- `403` — Forbidden.
- `404` — Not found — the requested resource does not exist.
- `409` — Conflict — the request is valid but cannot be completed in the current state.
- `422` — Unprocessable content — the request body is understood but contains invalid values.
- `429` — Too many requests or session concurrency exceeded. Retry with backoff; honor Retry-After and RateLimit headers when present.
- `500` — Internal server error.

---

[API](https://skmtc.dev/deck/apis/deck-api.md) · [All operations](https://skmtc.dev/deck/apis/deck-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/deck/deck-api/revisions/eba6e2cc9351/schema)
