Endpoint Playground
Test Crawlora's Indeed location suggestions API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/indeed/locations/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial location text | |
| limit | integer | No | Max suggestions to return, defaults to 10, maxes at 25 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "Austin",
"suggestions": [
{
"name": "Austin, TX (Travis County)",
"source": "PRECISELY"
},
{
"name": "Austin, MN",
"source": "PRECISELY"
},
{
"name": "Austin, IN",
"source": "PRECISELY"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns Indeed's own location-search autocomplete suggestions for a partial location string -- the same suggestions the app's search bar offers -- for building a valid `l` value for search. Credential-free GraphQL only; there is no page-based fallback for this endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Austin",
"suggestions": [
{
"name": "Austin, TX (Travis County)",
"source": "PRECISELY"
},
{
"name": "Austin, MN",
"source": "PRECISELY"
},
{
"name": "Austin, IN",
"source": "PRECISELY"
}
]
}
}curl "https://api.crawlora.net/api/v1/indeed/locations/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"