Skip to main content
GET
Get Results
This endpoint retrieves a paginated list of results (scraped data) produced by a squid. You can query results for an entire squid or filter to a specific run and/or task. Important: You must supply either the squid hash OR a specific run hash — not both.

Headers

string
required
Your API authentication token. Value: Token YOUR_API_KEY

Query Parameters

Response Field Explanations

integer
Total number of result records available. Example: 156
integer
Number of results per page (matches the limit param). Example: 50
integer
Current page number. Example: 1
integer
Total number of pages available. Example: 4
integer
1-based index of the first record in this page. Example: 1
integer
1-based index of the last record in this page. Example: 50
string | null
Full URL to fetch the next page (null if last page). Example: "https://api.lobstr.io/v1/results?squid=...&page=2"
string | null
Full URL to fetch the previous page (null if first page). Example: null
array
Array of result objects. Schema varies by crawler type. Example: [...]
string
Unique result identifier. Example: "b4af52b85c45661828d61980c167054b"
string
Always “result”. Example: "result"
string
Squid that produced this result. Example: "b6c56d18cb0046949461ba9ca278e8ad"
string
Run that produced this result. Example: "300e9c5c127d421c90f431478d9a2cfb"
string
When this result was scraped (ISO 8601). Example: "2025-02-10T14:31:05.487Z"

Result Data Schema

The fields within each result object depend on the crawler used. For example, a Google Maps crawler returns fields like name, address, phone, website, ratings, score, etc., while a LinkedIn crawler returns different fields. Use the Get Crawler Details endpoint to understand what fields your specific crawler returns.
Use the next URL to automatically paginate through all results until it returns null.
Result schemas vary by crawler. The fields returned depend on what data the crawler extracts.
You must provide either squid OR run — providing both or neither will result in an error.
For large result sets, increase limit to 100 to reduce the number of API calls needed.

Code Examples

Response

200
400