Wolt API endpoint
Use Crawlora's Wolt Search 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/searchReturns restaurants and stores near a coordinate, optionally filtered by a keyword or browsed by category. With none of those, this reads Wolt's own plain location browse; with a query it uses Wolt's own keyword search across restaurant/store names, dishes, and cuisines; with a category it browses Wolt's own per-category listing (the same page a homepage cuisine tile links to) -- call /wolt/search/filters for the current, complete, location-scoped list of valid category values. category and query cannot be combined. A keyword search additionally accepts sort, product_line, and open_now; those three apply to keyword search only and return a 400 without query. Each result carries its slug (the value the restaurant and menu endpoints take), name, address, coordinates, tags, price range, rating, and delivery estimate; the two browse modes additionally carry each venue's own category ids. 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 results list is a coverage answer rather than a no-matches answer. A keyword that simply matches nothing inside a covered area returns an empty list with is_serviceable true. Call /wolt/cities for the coordinates of every city Wolt operates in. 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 |
|---|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | ||
| longitude | number | Yes | Search center longitude | ||
| query | string | No | Optional keyword to search restaurant/store names, dishes, or cuisines by. Cannot be combined with category. | ||
| category | string | No | Optional Wolt category id to browse by instead of a keyword search, e.g. pizza, sushi, vegan. Call /wolt/search/filters for the current, complete, location-scoped list of valid values. Cannot be combined with query. A value Wolt does not recognize at all returns a 404; a real category this particular market does not use returns an empty list, since the taxonomy is location-scoped and markets differ. | ||
| limit | integer | No | 30 | Max restaurants/stores returned. Defaults to 30, maximum 100. | |
| sort | string | No | Optional result ordering. Only applies together with query -- Wolt exposes sorting on its keyword search only, not on its plain browse or category listings. Allowed values: recommended, distance, rating, delivery_fee, delivery_estimate | ||
| product_line | string | No | Optional store-type filter. Only applies together with query. Which store types a market actually stocks varies by country; one absent from the searched market returns no results rather than an error. Allowed values: restaurant, grocery, alcohol, pharmacy, pet_supply, health_and_beauty, electronics, toys_games_and_kids, home_and_diy, florist, general_merchandise, gift_card, charity, subscription, other | ||
| open_now | boolean | No | When true, restrict results to venues currently delivering. Only applies together with query. | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/wolt/search?query=coffee&limit=10&sort=recommended&product_line=restaurant&open_now=true" \ -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": {
"total_results": 1097,
"restaurants": [
{
"id": "5ae605a7349077000b1f5ef4",
"slug": "mcdonalds-forum-katutaso",
"name": "McDonald's Helsinki Forum Katutaso",
"address": "Mannerheimintie 16",
"country": "FIN",
"currency": "EUR",
"product_line": "restaurant",
"short_description": "I'm lovin' it",
"tags": [
"hamburger",
"salad",
"wrap"
],
"price_range": 1,
"rating_score": 8.2,
"rating_count": 1858,
"estimate_minutes": 15,
"estimate_range": "10-20",
"online": true,
"delivers": true,
"image_url": "https://imageproxy.wolt.com/assets/67332fcc40111921ceedb4f4",
"latitude": 60.16883307,
"longitude": 24.93949592,
"categories": [
"burgers",
"american"
]
}
],
"is_serviceable": true
}
}Request schema
No body schema
Response schema
#/definitions/wolt.searchResponseDoc
| 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.SearchResponse | No | ||||
| data.category | string | No | ||||
| data.is_serviceable | boolean | No | IsServiceable reports whether Wolt delivers to the requested coordinates at all. False means the coordinates are outside Wolt's delivery coverage, so an empty restaurants list is a coverage answer rather than a no-matches answer. True with an empty list means the location is served but nothing matched. Always present: all three search modes -- plain browse, keyword search, and category browse -- answer it definitively. | |||
| data.open_now | boolean | No | ||||
| data.product_line | string | No | ||||
| data.query | string | No | ||||
| data.restaurants | array | No | ||||
| data.restaurants[].address | string | No | ||||
| data.restaurants[].categories | array | No | Categories are the venue's own category ids, in the same taxonomy /wolt/search's category parameter and /wolt/search/filters use. This is a machine-readable vocabulary, distinct from Tags's free-text display list. Only the two browse modes carry it; a keyword search omits it. | |||
| data.restaurants[].city | string | No | ||||
| data.restaurants[].country | string | No | ||||
| data.restaurants[].currency | string | No | ||||
| data.restaurants[].delivers | boolean | No | ||||
| data.restaurants[].estimate_minutes | integer | No | ||||
| data.restaurants[].estimate_range | string | No | ||||
| data.restaurants[].id | string | No | ||||
| data.restaurants[].image_url | string | No | ||||
| data.restaurants[].latitude | number | No | Latitude/Longitude are the venue's own coordinates. | |||
| data.restaurants[].longitude | number | No | ||||
| data.restaurants[].name | string | No | ||||
| data.restaurants[].online | boolean | No | ||||
| data.restaurants[].price_range | integer | No | ||||
| data.restaurants[].product_line | string | No | ||||
| data.restaurants[].rating_count | integer | No | ||||
| data.restaurants[].rating_score | number | No | ||||
| data.restaurants[].short_description | string | No | ||||
| data.restaurants[].slug | string | No | ||||
| data.restaurants[].tags | array | No | ||||
| data.sort | string | No | ||||
| data.total_results | integer | 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/search?query=coffee&limit=10&sort=recommended&product_line=restaurant&open_now=true" \
-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