List Tasks
Task
List Tasks
Retrieve a paginated list of tasks for a specific squid
GET
List Tasks
This 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
Your API authentication token. Value:
Token YOUR_API_KEYQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| squid | string | Yes | The squid hash ID to list tasks for |
| type | string | No | Response detail level: ‘url’ (basic) or ‘params’ (detailed). Default: ‘url’ |
| 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 tasks. Example:
2Maximum results per page. Example:
50Current page number. Example:
1Total number of pages. Example:
1Array of task objects. Example:
[...]Unique task identifier. Example:
"6b9d3afdf4e76df374915a50d7a495c4"Task creation timestamp. Example:
"2025-03-05T09:24:49.581177"Whether the task is active. Example:
trueTask parameters. Example:
{"url": "..."}URL for next page (null if last page). Example:
nullURL for previous page (null if first page). Example:
nullResults are paginated. Use the next and previous URLs to navigate through large task lists.
Code Examples
Response
200