GET
/v1/crawlersList Crawlers
Retrieve a list of all available crawlers and their capabilitiesThis endpoint returns a paginated list of all available crawlers on the lobstr.io platform. Each crawler is designed to extract specific types of data from different sources.
Use this endpoint to discover which crawlers are available for your data collection needs before creating squids or adding tasks.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
| Content-Type | application/json | No |
Response Structure
total_results
integer
Example: 25
limit
integer
Example: 50
page
integer
Example: 1
total_pages
integer
Example: 1
result_from
integer
Example: 1
result_to
integer
Example: 25
data
array
next
stringnull
Example: null
previous
stringnull
Example: null
Crawler Object Fields
data[].id
string
Example: 4734d096159ef05210e0e1677e8be823
data[].name
string
Example: Google Maps Search Export
data[].slug
string
Example: google-maps-search-export
data[].is_public
boolean
Example: true
data[].is_available
boolean
Example: true
data[].is_premium
boolean
Example: false
data[].has_issues
boolean
Example: false
data[].max_concurrency
integer
Example: 20
data[].credits_per_row
number
Example: 0.5
data[].account
objectnull
Example: null
data[].icon
string
Example: data:image/svg+xml;base64,PHN2ZyB4bWxucz...
Pro Tip
Cache the list of crawlers locally as it doesn't change frequently. This reduces unnecessary API calls and improves your application's performance.
Note
Each crawler has a unique hash identifier that you'll use when creating squids or configuring data collection tasks.
Pro Tip
Check the crawler parameters endpoint to see what configuration options are available for each crawler before starting your scraping operations.