Wolt API endpoint
Use Crawlora's Wolt Restaurant Availability API to extract supported public Wolt data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/wolt/restaurant/availabilityReturns 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| 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. | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/wolt/restaurant/availability" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
]
}
}Request schema
No body schema
Response schema
#/definitions/wolt.availabilityResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | Code is the HTTP status code or a custom code used to indicate the result of the request @example 200 | |||
| data | wolt.AvailabilityResponse | No | ||||
| data.delivery_enabled | boolean | No | ||||
| data.delivery_fee | number | No | DeliveryFee is the base delivery price for this caller's coordinate, in major currency units (e.g. euros). Wolt scales it with distance -- confirmed live 2026-09-05: the same venue returned 1.99 for a 474m coordinate and 7.99 for a 16.2km one. | |||
| data.delivery_fee_label | string | No | DeliveryFeeLabel is Wolt's own locale-formatted rendering of the fee actually shown on the venue page (e.g. "€0.00" while a free-delivery campaign is running), which can differ from DeliveryFee's list price. | |||
| data.delivery_method_default | string | No | DeliveryMethodDefault is the fulfilment method Wolt itself would preselect for this caller's coordinate: "DELIVERY", "PICKUP", or "UNAVAILABLE" when no coordinate was supplied (or the venue does not deliver there at all). Confirmed live 2026-09-05. | |||
| data.delivery_open_status | wolt.OpenStatus | No | ||||
| data.delivery_open_status.is_open | boolean | No | ||||
| data.delivery_open_status.label | string | No | ||||
| data.delivery_open_status.next_close | string | No | ||||
| data.delivery_open_status.next_open | string | No | ||||
| data.delivery_open_status.now | string | No | ||||
| data.delivery_open_status.previous_open | string | No | ||||
| data.distance_label | string | No | DistanceLabel is Wolt's own formatted venue distance from the caller's coordinate (e.g. "474 m", "16.2 km"). Only present when coordinates were supplied. | |||
| data.estimates | array | No | ||||
| data.estimates[].label | string | No | ||||
| data.estimates[].max_minutes | integer | No | ||||
| data.estimates[].method | string | No | ||||
| data.estimates[].min_minutes | integer | No | ||||
| data.estimates[].minutes | integer | No | ||||
| data.id | string | No | ||||
| data.online | boolean | No | ||||
| data.open_status | wolt.OpenStatus | No | ||||
| data.open_status.is_open | boolean | No | ||||
| data.open_status.label | string | No | ||||
| data.open_status.next_close | string | No | ||||
| data.open_status.next_open | string | No | ||||
| data.open_status.now | string | No | ||||
| data.open_status.previous_open | string | No | ||||
| data.order_minimum | number | No | OrderMinimum is the venue's minimum order value in major currency units, and OrderMinimumLabel Wolt's own locale-formatted rendering of it (e.g. "Min. order €10.00"). | |||
| data.order_minimum_label | string | No | ||||
| data.promotions | array | No | Promotions are the discount campaign labels Wolt currently shows on the venue's own public page (e.g. "0 € delivery fee", "3x5 €"). This is display text only -- no campaign is claimed, redeemed, or applied. | |||
| data.self_delivery | boolean | No | ||||
| data.slug | string | No | ||||
| msg | unknown | No | Msg is the message that describes the result of the request @example "Request successful" |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/wolt/restaurant/availability" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms