---
title: "List Runs"
method: GET
path: "/v1/agents/runs"
---

# List Runs

`GET /v1/agents/runs`

List runs across your account. Supports filtering by status, by the agent they reference, and by creation time.

## Query parameters

- `status` 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'STOPPED' | 'TIMED_OUT'
- `agentId` string
- `startAt` string, date-time
- `endAt` string, date-time
- `limit` integer
- `cursor` string

## Response `200`

The page of matching agent runs.

- object — A page of agent runs.
  - `data` AgentRun[], required — The page of matching agent runs.
    - `runId` string, required — Unique identifier for the run.
    - `agentId` string — The ID of the agent applied to this run, if any. Omitted for ad-hoc runs.
    - `task` string, required — The original task description.
    - `status` 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED' | 'STOPPED' | 'TIMED_OUT', required — Current status of the run. - `PENDING` - agent will run soon - `RUNNING` - agent is currently running - `COMPLETED` - agent has finished running - `FAILED` - agent has failed the run - `STOPPED` - run was stopped by the user - `TIMED_OUT` - run exceeded maximum time
    - `sessionId` string — The Browserbase session ID powering this run.
    - `sandboxId` string — External sandbox identifier assigned by the runner. Optional.
    - `resultSchema` object — Per-run [JSON Schema](https://json-schema.org/specification) override for the result shape. When unset, the agent's default `resultSchema` applies.
    - `result` object — The agent's structured result for the run. Only present when the run has finished and output is available. The result conforms to the provided [JSON Schema](https://json-schema.org/specification) when one is set.
    - `cause` object
      - `code` string, required — Structured failure code (e.g., RUNNER_HEARTBEAT_LOST).
      - `message` string — Human-readable failure detail.
    - `startedAt` string, date-time
    - `endedAt` string, date-time
    - `createdAt` string, date-time, required
    - `updatedAt` string, date-time, required
  - `limit` integer, required — The maximum number of results returned in this page.
  - `nextCursor` string, nullable, required — Cursor for the next page. Pass it back as `cursor` on the next request to continue paging. null when there are no more results.

---

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