Get Run Tasks
Run
Get Run Tasks
Retrieve a list of all tasks executed within a specific run
GET
Get Run Tasks
This endpoint retrieves a paginated list of all tasks executed within a specific run, including their individual status, results, and parameters.
Headers
Your API authentication token. Value:
Token YOUR_API_KEYQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| run | string | Yes | The run hash ID to get tasks for |
| page | integer | No | Page number for pagination. Default: 1 |
| limit | integer | No | Results per page. Default: 50, Max: 100 |
Response Field Explanations
Total number of run tasks. Example:
1Array of run task objects. Example:
[...]Unique run task identifier. Example:
"1262f6f99dac7dffb05a513fff0ded77"Always “runtask”. Example:
"runtask"Original task identifier. Example:
"d30334cd8d21ab16048c5e2e7136a9f1"Parent run identifier. Example:
"300e9c5c127d421c90f431478d9a2cfb"Task execution status (completed, aborted, error, etc.). Example:
"aborted"Task parameters. Example:
{"url": "https://..."}When task execution started. Example:
"2025-02-10T14:30:58Z"When task execution ended. Example:
"2025-02-10T14:31:10Z"Total results expected from this task. Example:
138Number of results actually collected. Example:
6Total pages processed. Example:
1Reason for task completion. Example:
"run_aborted"The done_reason field on individual tasks can differ from the overall run’s done_reason.
Code Examples
Response
200