GET
/v1/squidsList Squids
Retrieve a paginated list of all your squids with filtering and search capabilitiesThis endpoint returns a paginated list of all squids belonging to the authenticated user. You can search by name and control pagination with query parameters.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
Response Structure
total_results
integer
Example: 15
limit
integer
Example: 50
page
integer
Example: 1
total_pages
integer
Example: 1
result_from
integer
Example: 1
result_to
integer
Example: 15
data
array
next
stringnull
Example: null
previous
stringnull
Example: null
Squid Object Fields
data[].id
string
Example: c106a44a98044ef18acc59986ae10967
data[].name
string
Example: Google Maps (1)
data[].created_at
string
Example: 2024-01-15T10:30:00Z
data[].is_active
boolean
Example: true
data[].is_ready
boolean
Example: true
data[].crawler
string
Example: 4734d096159ef05210e0e1677e8be823
data[].crawler_name
string
Example: Google Maps Search Export
data[].icon
string
Example: https://cdn.lobstr.io/icons/google-maps.png
data[].is_public
boolean
Example: true
data[].concurrency
integer
Example: 2
data[].params
object
Example: {language: en}
data[].to_complete
boolean
Example: false
data[].export_unique_results
boolean
Example: true
data[].no_line_breaks
boolean
Example: false
data[].last_run_status
string
Example: DONE
data[].last_run_at
string
Example: 2024-01-20T15:45:00Z
data[].total_runs
integer
Example: 5
data[].next_launch_at
stringnull
Example: 2024-01-21T10:00:00Z
data[].google_sheet_fields
objectnull
Example: null
data[].ftp_fields
objectnull
Example: null
data[].s3_fields
objectnull
Example: null
data[].webhook_fields
objectnull
Example: null
data[].schedule
stringnull
Example: 0 10 * * *
data[].schedule_time
string
Example: Daily at 10:00 AM
data[].download_url
stringnull
Example: https://storage.lobstr.io/downloads/xyz123...
Parameters
namestring
OptionalExample:
Googlelimitinteger
OptionalExample:
10pageinteger
OptionalExample:
2Pro Tip
Use the 'name' query parameter to quickly find squids. It performs a case-insensitive partial match on squid names.
Note
The 'next' and 'previous' fields contain full URLs for easy pagination. Use them directly to navigate through pages.
Pro Tip
Check 'last_run_status' to see if a squid has completed, is running, or encountered errors. Useful for monitoring multiple squids.
Warning
Squids with 'is_ready: false' haven't been configured with tasks yet. Add tasks before starting a run.
Pro Tip
The 'download_url' field provides a temporary signed URL to download results. URLs expire after a certain time period.