---
title: "List Playbook Runs"
method: GET
path: "/v1/playbooks/{playbook_id}/runs"
tags: ["playbooks"]
---

# List Playbook Runs

`GET /v1/playbooks/{playbook_id}/runs`

List execution runs for a playbook.

Requires the `sequences:read` scope on the API key.

## Path parameters

- `playbook_id` string, uuid, required

## Query parameters

- `page` integer
- `size` integer
- `status` 'PENDING' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'REJECTED'

## Response `200`

Successful Response

- PublicPaginationEnvelopePlaybookRunPublicOutput
  - `items` PlaybookRunPublicOutput[], required — Records on this page.
    - `id` string, uuid, required — Unique identifier of the run.
    - `playbook_id` string, uuid, required — Playbook that was executed.
    - `status` 'PENDING' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'REJECTED', required
    - `started_at` string, date-time, nullable — When the run started executing.
    - `created_at` string, date-time, required — When the run was created.
    - `error_message` string, nullable — Failure reason if the run failed.
  - `total_count` integer, required — Total number of records matching the query.
  - `total_pages` integer, required — Total number of pages.
  - `has_more` boolean, required — Whether more pages remain after the current one.

---

[API](https://skmtc.net/topo/apis/topo-public-api.md) · [All operations](https://skmtc.net/topo/apis/topo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/topo/topo-public-api/revisions/ad6ac1d13526/schema)
