Wolt API endpoint
Use Crawlora's Wolt Restaurant 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/restaurantReturns one Wolt restaurant or store's public detail by its slug: name, address, coordinates, timezone, phone, website, rating, currency, price range, cuisine tags, category ids (the values /wolt/search's category parameter accepts), opening hours, delivery hours, delivery methods, pickup availability, order minimum, and service fee estimate. 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 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/wolt/restaurant" \ -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.
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": {
"id": "5ae605a7349077000b1f5ef4",
"slug": "mcdonalds-forum-katutaso",
"name": "McDonald's Helsinki Forum Katutaso",
"brand_name": "McDonald's",
"description": "I'm lovin' it.",
"address": "Mannerheimintie 16",
"city": "Helsinki",
"country": "FIN",
"post_code": "00100",
"phone": "+358407170258",
"website": "http://mcdonalds.fi",
"currency": "EUR",
"product_line": "restaurant",
"rating_score": 8.2,
"rating_count": 500,
"delivery_base_price": 189,
"image_url": "https://imageproxy.wolt.com/assets/67332fcc40111921ceedb4f4",
"share_url": "https://wolt.com/fi/fin/helsinki/restaurant/mcdonalds-forum-katutaso",
"opening_times": [
{
"day": "Friday",
"formatted_times": "05:00–24:00"
},
{
"day": "Saturday",
"formatted_times": "All day"
}
],
"delivery_times": [
{
"day": "Friday",
"formatted_times": "05:00–23:30"
}
],
"delivery_methods": [
"homedelivery"
],
"pickup_friendly": false,
"order_minimum": "€10.00",
"service_fee_min": 100,
"service_fee_max": 399,
"service_fee_percent": 10,
"latitude": 60.16883307,
"longitude": 24.93949592,
"timezone": "Europe/Helsinki",
"brand_slug": "mcdonalds",
"price_range": 1,
"tags": [
"hamburger",
"fries",
"salad"
],
"categories": [
{
"id": "burgers",
"name": "Burger",
"primary": true
},
{
"id": "american",
"name": "American"
}
],
"city_id": "58da504ba3284104e807127d",
"wolt_plus": true
}
}Request schema
No body schema
Response schema
#/definitions/wolt.restaurantResponseDoc
| 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.RestaurantResponse | No | ||||
| data.address | string | No | ||||
| data.brand_name | string | No | ||||
| data.brand_slug | string | No | BrandSlug is a grouping key shared by every location of a chain (e.g. "mcdonalds"). Wolt publishes no brand listing, so it is not accepted as a parameter anywhere -- it is useful for collapsing results by chain. | |||
| data.categories | array | No | Categories are the venue's own categories, each with the id /wolt/search's category parameter accepts, a display name, and a flag for the venue's primary category. | |||
| data.categories[].id | string | No | ||||
| data.categories[].name | string | No | ||||
| data.categories[].primary | boolean | No | ||||
| data.city | string | No | ||||
| data.city_id | string | No | CityID is the id of the /wolt/cities entry this venue belongs to. | |||
| data.country | string | No | ||||
| data.currency | string | No | ||||
| data.delivery_base_price | integer | No | ||||
| data.delivery_methods | array | No | ||||
| data.delivery_times | array | No | ||||
| data.delivery_times[].day | string | No | ||||
| data.delivery_times[].formatted_times | string | No | ||||
| data.description | string | No | ||||
| data.id | string | No | ||||
| data.image_url | string | No | ||||
| data.latitude | number | No | Latitude/Longitude are the venue's own coordinates. | |||
| data.longitude | number | No | ||||
| data.name | string | No | ||||
| data.opening_times | array | No | ||||
| data.opening_times[].day | string | No | ||||
| data.opening_times[].formatted_times | string | No | ||||
| data.order_minimum | string | No | ||||
| data.phone | string | No | ||||
| data.pickup_friendly | boolean | No | ||||
| data.post_code | string | No | ||||
| data.price_range | integer | No | PriceRange is Wolt's own 1-4 price tier and Tags its free-text display cuisine list -- the same two fields /wolt/search returns per result. | |||
| data.product_line | string | No | ||||
| data.rating_count | integer | No | ||||
| data.rating_score | number | No | ||||
| data.service_fee_max | integer | No | ||||
| data.service_fee_min | integer | No | ||||
| data.service_fee_percent | integer | No | ||||
| data.share_url | string | No | ||||
| data.slug | string | No | ||||
| data.tags | array | No | ||||
| data.timezone | string | No | Timezone is the IANA zone (e.g. "Europe/Helsinki") the venue's opening and delivery hours are expressed in. | |||
| data.website | string | No | ||||
| data.wolt_plus | boolean | No | WoltPlus reports whether the venue participates in Wolt's subscription programme. | |||
| 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" \
-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