Documentation Index
Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt
Use this file to discover all available pages before exploring further.
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.
Your API authentication token. Value: Token YOUR_API_KEY
Query 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: 2
Maximum results per page. Example: 50
Current page number. Example: 1
Total number of pages. Example: 1
Array 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: true
Task parameters. Example: {"url": "..."}
URL for next page (null if last page). Example: null
URL for previous page (null if first page). Example: null
Use type=url for a quick overview of tasks, or type=params when you need full parameter details.
Results are paginated. Use the next and previous URLs to navigate through large task lists.
Check is_active to identify tasks that are ready to run vs. disabled tasks.
Code Examples
curl -X GET "https://api.lobstr.io/v1/tasks?squid=a1b2c3d4e5f6g7h8i9j0&type=params&page=1&limit=50" \
-H "Authorization: Token YOUR_API_KEY"
Response
{
"total_results": 2,
"limit": 50,
"page": 1,
"total_pages": 1,
"data": [
{
"id": "6b9d3afdf4e76df374915a50d7a495c4",
"created_at": "2025-03-05T09:24:49.581177",
"is_active": true,
"params": {
"url": "https://www.linkedin.com/in/johndoe"
}
},
{
"id": "c5e29d2aba8b77cdc56391e7405302de",
"created_at": "2025-03-05T09:24:49.581177",
"is_active": true,
"params": {
"url": "https://www.linkedin.com/in/janedoe"
}
}
],
"next": null,
"previous": null
}