GET
/v1/runsList Runs
Retrieve a paginated list of all runs for a specific squidThis endpoint retrieves a paginated list of all runs for a specific squid. Use this to view run history and track past executions.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
Query Parameters
squid
Type:
string
Required:
Yes
Description:
The squid hash ID to list runs 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: 4
limit
integer
Example: 50
page
integer
Example: 1
total_pages
integer
Example: 1
data
array
Example: [...]
data[].id
string
Example: 381cfbb47e474782857ddc035298b6f3
data[].status
string
Example: done
data[].is_done
boolean
Example: true
data[].total_results
integer
Example: 156
data[].duration
float
Example: 3.1849
data[].credit_used
float
Example: 3.1849
data[].done_reason
stringnull
Example: tasks_done
next
stringnull
Example: null
previous
stringnull
Example: null
Pro Tip
Use this endpoint to monitor all past and current runs for a squid.
Note
Runs are returned in reverse chronological order (newest first).
Pro Tip
Check is_done to quickly filter completed vs. active runs.