Endpoint Playground
Test Crawlora's Wolt Collections 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/collections?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": {
"collections": [
{
"id": "top-rated-venues",
"title": "Top-rated",
"restaurants": [
{
"id": "6411b53cc19783bc82b1d7cc",
"slug": "cafe-korvari",
"name": "Cafe Korvari",
"address": "Stenbäckinkatu 12",
"country": "FIN",
"currency": "EUR",
"product_line": "restaurant",
"price_range": 1,
"rating_score": 9.2,
"online": true,
"delivers": true,
"image_url": "https://imageproxy.wolt.com/assets/67321485a94945236d40b6ff"
}
]
}
],
"is_serviceable": true
}
}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 Wolt's own curated homepage restaurant/store lists for a location (e.g. top-rated, newest, hot-this-week -- whichever collections Wolt's own ops team currently curates for that market), read from Wolt's anonymous homepage endpoint. Each restaurant carries the same fields /wolt/search returns. The response also carries is_serviceable, which says whether Wolt delivers to the requested coordinates at all: false means the coordinates are outside Wolt's delivery coverage, so the empty collections list is a coverage answer rather than a served location whose homepage happens to carry no curated lists.
{
"code": 200,
"msg": "OK",
"data": {
"collections": [
{
"id": "top-rated-venues",
"title": "Top-rated",
"restaurants": [
{
"id": "6411b53cc19783bc82b1d7cc",
"slug": "cafe-korvari",
"name": "Cafe Korvari",
"address": "Stenbäckinkatu 12",
"country": "FIN",
"currency": "EUR",
"product_line": "restaurant",
"price_range": 1,
"rating_score": 9.2,
"online": true,
"delivers": true,
"image_url": "https://imageproxy.wolt.com/assets/67321485a94945236d40b6ff"
}
]
}
],
"is_serviceable": true
}
}curl "https://api.crawlora.net/api/v1/wolt/collections?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"