GET
/v1/tasksList Tasks
Retrieve a paginated list of tasks for a specific squidThis endpoint retrieves a paginated list of tasks for a specific squid. You can choose between two query types to get different levels of detail.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
Query Parameters
squid
Type:
string
Required:
Yes
Description:
The squid hash ID to list tasks for
type
Type:
string
Required:
No
Description:
Response detail level: 'url' (basic) or 'params' (detailed). Default: 'url'
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: 2
limit
integer
Example: 50
page
integer
Example: 1
total_pages
integer
Example: 1
data
array
Example: [...]
data[].id
string
Example: 6b9d3afdf4e76df374915a50d7a495c4
data[].created_at
string
Example: 2025-03-05T09:24:49.581177
data[].is_active
boolean
Example: true
data[].params
object
Example: {url: ...}
next
stringnull
Example: null
previous
stringnull
Example: null
Pro Tip
Use type=url for a quick overview of tasks, or type=params when you need full parameter details.
Note
Results are paginated. Use the next and previous URLs to navigate through large task lists.
Pro Tip
Check is_active to identify tasks that are ready to run vs. disabled tasks.