Endpoint Playground
Test Crawlora's Wolt Restaurant Menu Search 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/menu/search?slug=<slug>&query=<query>" \
-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 | |
| query | string | Yes | Keyword to match against this venue's own item names and descriptions | |
| limit | integer | No | Max items returned. Defaults to 30, maximum 100. |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "wolt-market-kamppi",
"query": "milk",
"total_results": 270,
"items": [
{
"id": "bb548f646ccfa1046f579b79",
"name": "Valio Eila® kevytmaitojuoma 1 l laktoositon",
"description": "Valio Eila® laktoositon kevytmaitojuoma.",
"price": 2.29,
"dietary_preferences": [
"lactose_free"
],
"image_url": "https://imageproxy.wolt.com/assets/667942345074ed02696566c5",
"barcode_gtin": "06408430000258",
"unit_info": "1 l",
"unit_price": {
"price": 2.29,
"base": 1,
"unit": "litre"
}
}
]
}
}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.
Searches one restaurant's or store's own items by keyword, using Wolt's own in-venue item search. This is the only way to reach the items of a large grocery or retail store: /wolt/restaurant/menu returns those venues' categories with no items, because Wolt itself only loads such an assortment a slice at a time. Matching works across languages, so an English keyword finds locally-named products. Each item carries a name, description, price, dietary tags, image, and -- for packaged retail products -- a barcode, pack size, and per-unit comparison price. A keyword is required; a no-match keyword returns an empty item list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "wolt-market-kamppi",
"query": "milk",
"total_results": 270,
"items": [
{
"id": "bb548f646ccfa1046f579b79",
"name": "Valio Eila® kevytmaitojuoma 1 l laktoositon",
"description": "Valio Eila® laktoositon kevytmaitojuoma.",
"price": 2.29,
"dietary_preferences": [
"lactose_free"
],
"image_url": "https://imageproxy.wolt.com/assets/667942345074ed02696566c5",
"barcode_gtin": "06408430000258",
"unit_info": "1 l",
"unit_price": {
"price": 2.29,
"base": 1,
"unit": "litre"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/wolt/restaurant/menu/search?slug=<slug>&query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"