GA
List Task Runs
Retrieve a paginated list of task runs for a specific task.
Task runs provide an audit trail of all task executions, including:
- Input parameters used
- Execution status and timing
- Resource usage metrics
- Output results
- Error information for failed runs
This endpoint supports:
- Pagination using cursor-based navigation
- Filtering by task revision
- Sorting by creation time (newest first)
Common use cases:
- Monitoring task execution history
- Auditing task usage and performance
- Debugging task behavior across multiple runs
- Analyzing task output patterns
Path parameters
org_id
The unique identifier of the organization.
project_id
The unique identifier of the project.
task_id
The specific Task to reference.
Headers
Authorization
Bearer authentication of the form Bearer <token>, where token is your auth token.
Query parameters
page_limit
The maximum number of items to return per page. Defaults to 100
if not specified.
cursor
A cursor for pagination. Use the next_cursor
value from the previous response to get the next page of results.
task_revision_id
Filter task runs by revision ID
Response
Successfully retrieved task runs
results
The list of items returned for the current page.
pagination
Contains pagination information for the result set.