List all DAG-runs
Retrieves a list of all DAG-runs with optional filtering by name and status
Query parameters
status of the DAG-run. Repeat the parameter to match multiple statuses.
Unix timestamp in seconds
start datetime for filtering DAG-runs in ISO 8601 format with timezone
Unix timestamp in seconds
end datetime for filtering DAG-runs in ISO 8601 format with timezone
Unique identifier for the DAG-run. The special value 'latest' can be used to reference the most recent DAG-run.
ID of the DAG-run or 'latest' to get the most recent DAG-run
Maximum number of DAG-runs to return (default 100)
Opaque cursor for loading the next page of older DAG-runs
name of the remote node
Workspace selector. For list and search APIs, use all, default, or a workspace name. Omitted means all.
Filter DAG-runs by name
Filter DAG-runs by DAG labels (comma-separated). Returns runs from DAGs that have ALL specified labels. Mutually exclusive with tags; the server returns HTTP 400 if both are set.
Deprecated alias for labels; mutually exclusive with labels. Filter DAG-runs by DAG labels (comma-separated).
Response
A successful response
Example response
{
"dagRuns": [
{
"dagRunId": "latest"
}
]
}