Endpoint Playground
Test Crawlora's Wolt Search Filters 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/wolt/search/filters?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude |
{
"code": 200,
"msg": "OK",
"data": {
"total_results": 1097,
"categories": [
{
"id": "lunch",
"name": "Lunch",
"count": 279
},
{
"id": "pizza",
"name": "Pizza",
"count": 218
},
{
"id": "sushi",
"name": "Sushi"
}
]
}
}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 the current, location-scoped catalog of every value /wolt/search's category parameter accepts, each with a live restaurant count when Wolt's own homepage currently features that category as one of its curated tiles -- the same data Wolt's own search page's cuisine tiles are populated from.
{
"code": 200,
"msg": "OK",
"data": {
"total_results": 1097,
"categories": [
{
"id": "lunch",
"name": "Lunch",
"count": 279
},
{
"id": "pizza",
"name": "Pizza",
"count": 218
},
{
"id": "sushi",
"name": "Sushi"
}
]
}
}curl "https://api.crawlora.net/api/v1/wolt/search/filters?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"