List task runs
List all runs for a task with cursor-based pagination.
Authorizations
Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format
Path Parameters
The unique task identifier (base64) A universally unique identifier (base64-encoded opaque string).
"RW50aXR5OjEyMzQ1"
Query Parameters
Filter by run status: PENDING, RUNNING, COMPLETED, FAILED, CANCELLED Status of a task run.
- PENDING - The run has been created but not yet started.
- RUNNING - The run is currently in progress.
- COMPLETED - The run finished successfully.
- FAILED - The run encountered an error and stopped.
- CANCELLED - The run was cancelled before completion.
PENDING, RUNNING, COMPLETED, FAILED, CANCELLED Maximum items to return. Defaults to 50 if omitted; maximum is 100.
1 <= x <= 100Opaque pagination cursor returned from a previous response
(pagination.next_cursor). Treat it as an unreadable token; do not
attempt to parse or construct it.