Skip to main content
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

string
required
Your API authentication token. Value: Token YOUR_API_KEY

Query Parameters

Response Field Explanations

integer
Total number of run tasks. Example: 1
array
Array of run task objects. Example: [...]
string
Unique run task identifier. Example: "1262f6f99dac7dffb05a513fff0ded77"
string
Always “runtask”. Example: "runtask"
string
Original task identifier. Example: "d30334cd8d21ab16048c5e2e7136a9f1"
string
Parent run identifier. Example: "300e9c5c127d421c90f431478d9a2cfb"
string
Task execution status (completed, aborted, error, etc.). Example: "aborted"
object
Task parameters. Example: {"url": "https://..."}
string
When task execution started. Example: "2025-02-10T14:30:58Z"
string
When task execution ended. Example: "2025-02-10T14:31:10Z"
integer
Total results expected from this task. Example: 138
integer
Number of results actually collected. Example: 6
integer
Total pages processed. Example: 1
string
Reason for task completion. Example: "run_aborted"
Use this endpoint to debug which specific tasks failed or were incomplete in a run.
The done_reason field on individual tasks can differ from the overall run’s done_reason.
Compare total_results vs last_result to see if a task collected all expected data.

Code Examples

Response

200