Skip to main content
GET
List Deployment Runs
Every request requires ?beta=true, anthropic-version: 2023-06-01, and anthropic-beta: managed-agents-2026-04-01.

Authorizations

X-Api-Key
string
header
default:sk-ant-local-default
required

OMA workspace API key.

Headers

anthropic-version
string
required
anthropic-beta
string
required

Query Parameters

beta
enum<boolean>
required

Selects the beta API contract for this endpoint. Must be true.

Available options:
true
limit
integer<int32>

Maximum results per page. Default 20, maximum 1000.

page
string

Opaque pagination cursor. Pass next_page from the previous response. Invalid or expired cursors return 400.

deployment_id
string

Filter to a specific deployment. Omit to list across all deployments in the workspace. Filtering by a non-existent deployment_id returns 200 with empty data.

trigger_type
enum<string>

Filter runs by what triggered them. Omit to return all runs. What triggered a deployment run.

Available options:
schedule,
manual
has_error
boolean

Filter: true for runs with non-null error, false for runs with non-null session_id. Omit for all.

created_at[gte]
string<date-time>

Return runs created at or after this time (inclusive). A timestamp in RFC 3339 format

created_at[lte]
string<date-time>

Return runs created at or before this time (inclusive). A timestamp in RFC 3339 format

created_at[gt]
string<date-time>

Return runs created strictly after this time (exclusive). A timestamp in RFC 3339 format

created_at[lt]
string<date-time>

Return runs created strictly before this time (exclusive). A timestamp in RFC 3339 format

Response

Successful response (OK)

Paginated list of deployment runs. Sorted by created_at descending (most recent first).

data
object[]
required

List of deployment runs.

next_page
string | null

Opaque cursor for the next page. Null when no more results.