Deliveroo API endpoint
Use Crawlora's Deliveroo Search API to extract supported public Deliveroo 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.
/deliveroo/searchReturns the restaurants (or, with collection set, grocery/shopping stores) Deliveroo's own home feed serves for a latitude/longitude in the given market -- a curated feed of every distinct card the location's page carries, not an exhaustive paginated search. Each result carries its uname (the value the restaurant and menu endpoints take), name, image, and, when the upstream page includes it, rating, delivery time, and distance. Optional collection, cuisine, dietary, dish, min_rating, max_delivery_minutes, max_delivery_fee_pounds, has_offer, and sort parameters narrow and order the same feed -- call /deliveroo/search/filters for the current, complete, location-scoped list of every valid cuisine/dietary/dish value with live result counts. A location with no coverage returns an empty list rather than an error. 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 | ||
| market | string | No | Deliveroo national market to search (default uk) Allowed values: uk, ie, fr, it, be, ae, kw | ||
| limit | integer | No | Restaurants to return, clamped to 100 (default 20) | ||
| collection | string | No | Optional, passed straight through to the upstream. Selects the Deliveroo partner vertical: omit for restaurants/takeaways (default), grocery for supermarkets and convenience stores, shopping for non-food retail -- both confirmed live; other values may exist and are not rejected. Every result uses the same uname contract for /deliveroo/restaurant and /deliveroo/restaurant/menu. | ||
| cuisine | array | No | Optional, repeatable Deliveroo cuisine filter, e.g. cuisine=american&cuisine=asian. Passed straight through to the upstream; call /deliveroo/search/filters for the current, complete, location-scoped list of valid values. An unrecognized value is silently ignored by the upstream, not rejected. | ||
| dietary | array | No | Optional, repeatable Deliveroo dietary filter passed straight through to the upstream, e.g. dietary=vegan. Call /deliveroo/search/filters for the current, complete list of valid values. An unrecognized value is silently ignored by the upstream, not rejected. | ||
| dish | array | No | Optional, repeatable Deliveroo dish-level filter passed straight through to the upstream, e.g. dish=pizza&dish=sushi. Call /deliveroo/search/filters for the current, complete, location-scoped list of valid values. An unrecognized value is silently ignored by the upstream, not rejected. | ||
| top_rated | boolean | No | When true, only returns results Deliveroo itself marks top-rated (its own 4.5+ threshold). Equivalent to min_rating=4.5; ignored if min_rating is also set. | ||
| min_rating | number | No | Minimum star rating filter Allowed values: 3.5, 4, 4.5 | ||
| max_delivery_minutes | integer | No | Maximum estimated delivery time in minutes Allowed values: 20, 30, 45 | ||
| max_delivery_fee_pounds | integer | No | Maximum delivery fee in GBP Allowed values: 1, 2, 3 | ||
| has_offer | boolean | No | When true, only returns results currently running an offer/promotion | ||
| sort | string | No | Result ordering Allowed values: recommended, distance, time, rating | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/deliveroo/search?market=uk&limit=10&top_rated=true&min_rating=3.5&max_delivery_minutes=20&max_delivery_fee_pounds=1&has_offer=true&sort=recommended" \ -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 |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"restaurants": [
{
"restaurant_id": "489952",
"name": "Five Guys - Burgers, Fries & Shakes",
"uname": "five-guys-victoria",
"image_url": "https://rs-menus-api.roocdn.com/images/386c4679-3a15-49ec-ad59-59182b2a11fa/image.jpeg",
"rating": 4.8,
"delivery_time_minutes": 15,
"distance_miles": 0.2
}
]
}
}Request schema
No body schema
Response schema
#/definitions/deliveroo.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 | deliveroo.SearchResponse | No | ||||
| data.restaurants | array | No | ||||
| data.restaurants[].delivery_time_minutes | integer | No | ||||
| data.restaurants[].distance_miles | number | No | ||||
| data.restaurants[].image_url | string | No | ||||
| data.restaurants[].name | string | No | ||||
| data.restaurants[].rating | number | No | ||||
| data.restaurants[].restaurant_id | string | No | ||||
| data.restaurants[].uname | 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/deliveroo/search?market=uk&limit=10&top_rated=true&min_rating=3.5&max_delivery_minutes=20&max_delivery_fee_pounds=1&has_offer=true&sort=recommended" \
-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