Endpoint Playground
Test Crawlora's Wolt Restaurant Availability 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/restaurant/availability?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | Wolt restaurant/store slug, from /wolt/search's slug field | |
| latitude | number | No | Optional delivery-address latitude. Must be given together with longitude. | |
| longitude | number | No | Optional delivery-address longitude. Must be given together with latitude. |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "kotipizza-kamppi",
"id": "67d00e2de8ee162ad64719e6",
"online": true,
"open_status": {
"is_open": true,
"label": "Open until 23:59",
"now": "2026-09-05T18:59:51+03:00",
"next_open": "2026-09-06T11:00:00+03:00",
"next_close": "2026-09-05T23:59:00+03:00"
},
"delivery_open_status": {
"is_open": true,
"label": "Open until 23:59",
"next_close": "2026-09-05T23:59:00+03:00"
},
"delivery_method_default": "DELIVERY",
"delivery_enabled": true,
"self_delivery": true,
"estimates": [
{
"method": "homedelivery",
"label": "20-30 min",
"minutes": 25,
"min_minutes": 20,
"max_minutes": 30
},
{
"method": "takeaway",
"label": "10-30 min",
"minutes": 20,
"min_minutes": 10,
"max_minutes": 30
}
],
"delivery_fee": 1.99,
"delivery_fee_label": "€0.00",
"order_minimum": 10,
"order_minimum_label": "Min. order €10.00",
"distance_label": "474 m",
"promotions": [
"3x5 €",
"0 € delivery fee"
]
}
}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 one restaurant/store's live availability for a delivery coordinate: whether it is open and online right now, the next open and close times, delivery and pickup time estimates in minutes, the delivery fee, the order minimum, the venue's distance, and any discount campaign labels Wolt currently shows on its public page. Coordinates are optional but change the answer materially -- Wolt resolves delivery availability, the fee, the estimate, and the distance against them; without coordinates the venue's generic, location-independent status is returned and delivery_method_default is UNAVAILABLE.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "kotipizza-kamppi",
"id": "67d00e2de8ee162ad64719e6",
"online": true,
"open_status": {
"is_open": true,
"label": "Open until 23:59",
"now": "2026-09-05T18:59:51+03:00",
"next_open": "2026-09-06T11:00:00+03:00",
"next_close": "2026-09-05T23:59:00+03:00"
},
"delivery_open_status": {
"is_open": true,
"label": "Open until 23:59",
"next_close": "2026-09-05T23:59:00+03:00"
},
"delivery_method_default": "DELIVERY",
"delivery_enabled": true,
"self_delivery": true,
"estimates": [
{
"method": "homedelivery",
"label": "20-30 min",
"minutes": 25,
"min_minutes": 20,
"max_minutes": 30
},
{
"method": "takeaway",
"label": "10-30 min",
"minutes": 20,
"min_minutes": 10,
"max_minutes": 30
}
],
"delivery_fee": 1.99,
"delivery_fee_label": "€0.00",
"order_minimum": 10,
"order_minimum_label": "Min. order €10.00",
"distance_label": "474 m",
"promotions": [
"3x5 €",
"0 € delivery fee"
]
}
}curl "https://api.crawlora.net/api/v1/wolt/restaurant/availability?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"