GET
/v1/runtasksGet Run Tasks
Retrieve a list of all tasks executed within a specific runThis endpoint retrieves a paginated list of all tasks executed within a specific run, including their individual status, results, and parameters.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
Query Parameters
run
Type:
string
Required:
Yes
Description:
The run hash ID to get tasks for
page
Type:
integer
Required:
No
Description:
Page number for pagination. Default: 1
limit
Type:
integer
Required:
No
Description:
Results per page. Default: 50, Max: 100
Response Field Explanations
total_results
integer
Example: 1
data
array
Example: [...]
data[].id
string
Example: 1262f6f99dac7dffb05a513fff0ded77
data[].object
string
Example: runtask
data[].task
string
Example: d30334cd8d21ab16048c5e2e7136a9f1
data[].run
string
Example: 300e9c5c127d421c90f431478d9a2cfb
data[].status
string
Example: aborted
data[].params
object
Example: {url: https://...}
data[].started_at
string
Example: 2025-02-10T14:30:58Z
data[].ended_at
string
Example: 2025-02-10T14:31:10Z
data[].total_results
integer
Example: 138
data[].last_result
integer
Example: 6
data[].total_pages
integer
Example: 1
data[].done_reason
string
Example: run_aborted
Pro Tip
Use this endpoint to debug which specific tasks failed or were incomplete in a run.
Note
The done_reason field on individual tasks can differ from the overall run's done_reason.
Pro Tip
Compare total_results vs last_result to see if a task collected all expected data.