# Deliveroo Scraper — Menus, Prices, Ratings & Address (`memo23/deliveroo-scraper`) Actor

Deliveroo restaurants from menu URLs or city/neighborhood search. One row per store: name, rating, delivery time, address, and menu items with prices when includeMenu is on. UK, EU, UAE, Asia-Pacific markets.

- **URL**: https://apify.com/memo23/deliveroo-scraper.md
- **Developed by:** [Muhamed Didovic](https://apify.com/memo23) (community)
- **Categories:** E-commerce, Travel
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 restaurant scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Deliveroo Scraper — Menus, Prices, Ratings & Address

Turn Deliveroo menu URLs — or a `city/neighborhood` + postcode search — into one restaurant row: name, rating, delivery time, street address, and menu items with prices.

UK, Ireland, France, Italy, Benelux, UAE, Qatar, Kuwait, Hong Kong, Singapore, Australia. One billed row per restaurant.

#### How it works

![How the Deliveroo scraper works](https://raw.githubusercontent.com/muhamed-didovic/muhamed-didovic.github.io/main/assets/how-it-works-deliveroo.png)

### Why Use This Scraper?

- **HTTP, not a $1.75 browser start.** Menu URLs and listing pages come from `__NEXT_DATA__` over Impit / scrape.do.
- **Menus with real prices.** `£7.79` lands as `7.79` plus the formatted string. Cap with `maxMenuItems`, or set `menuMode` to `all`.
- **URL mode or area search.** Paste menu links, or `london/soho` + `W1D3QU`.
- **Same optional flags as iFood.** `includeMenu`, `includeExtra`, `includeReviews`, `menuMode`. Extra / menu / reviews are billed only when those fields land. Public Deliveroo pages usually publish no review text.

### Overview

Built for analysts and dark-kitchen operators who need public Deliveroo cards plus the catalog. Paste menu URLs (keep `day` / `postcode` / `geohash` / `time`) or search a neighborhood. Each restaurant becomes at most one dataset row.

### Supported Inputs

| Input | Example | Returns |
|---|---|---|
| **Menu URL** | `https://deliveroo.co.uk/menu/London/fitzrovia/mcdonalds-0028-oxford-street-1?day=today&postcode=W1D3QU&time=ASAP` | That restaurant + menu |
| **Location query** | `london/soho` + postcode `W1D3QU` | Nearby restaurants |

**Not supported:** logged-in Plus prices, driver tracking, or order placement.

### Use Cases

| You are a… | Use it to… |
|---|---|
| Market researcher | Density + ratings for a postcode |
| Chain analyst | Track item prices across cities |
| Dark-kitchen operator | See what already delivers to a street |
| Dietary app | Pull tags and descriptions when Deliveroo publishes them |

### How It Works

1. **Resolve** restaurants from menu URLs, or from `/restaurants/{city}/{neighborhood}?postcode=`.
2. **Parse `__NEXT_DATA__`** on the listing (cards) and/or the menu page (`metas.root`).
3. **Merge** rating/ETA from the card with address + items from the menu.
4. **Apply flags** (`includeExtra` / `includeMenu` / `includeReviews` / `menuMode`) and push one row. Extra, menu, and reviews fire only when those fields are present.

### Input Configuration

| Field | Type | Description |
|---|---|---|
| `restaurantUrls` | array | Menu URLs. Skips search when filled. |
| `queries` | array | `city/neighborhood` pairs. Search mode only. |
| `domain` | string | Market TLD for search (`co.uk`, `fr`, `ae`, …). |
| `postcode` | string | Delivery postcode. |
| `maxRestaurants` | integer | Cap on rows. Default `50`. |
| `includeMenu` | boolean | Menu items + prices. Default `true`. |
| `menuMode` | string | `limited` (cap) or `all`. Default `limited`. |
| `maxMenuItems` | integer | Cap per restaurant when `menuMode` is limited. Default `80`. |
| `includeReviews` | boolean | Customer reviews when the page publishes them. Default `false`. |
| `includeExtra` | boolean | Street address + postcode. Default `true`. |
| `maxConcurrency` | integer | Parallel fetches, 1–8. Default `4`. |

**One restaurant**

```json
{
  "restaurantUrls": [
    "https://deliveroo.co.uk/menu/London/fitzrovia/mcdonalds-0028-oxford-street-1?day=today&postcode=W1D3QU&time=ASAP"
  ],
  "maxRestaurants": 1
}
```

**Neighborhood search**

```json
{
  "queries": ["london/soho"],
  "postcode": "W1D3QU",
  "domain": "co.uk",
  "includeMenu": true,
  "includeExtra": true,
  "includeReviews": false,
  "menuMode": "limited",
  "maxRestaurants": 10
}
```

### Output Overview

The dataset holds **one row per restaurant**. Listing cards contribute rating, ETA, and distance. The menu page contributes address, `menu[]`, and `reviews[]` when Deliveroo publishes them.

### Output Samples

```json
{
  "restaurantId": "445861",
  "name": "McDonald's  - Oxford Street 1",
  "slug": "mcdonalds-0028-oxford-street-1",
  "url": "https://deliveroo.co.uk/menu/london/fitzrovia/mcdonalds-0028-oxford-street-1",
  "city": "london",
  "neighborhood": "Fitzrovia",
  "address": "8/10 Oxford Street, London, W1D1AW",
  "currency": "GBP",
  "rating": 4.5,
  "deliveryTime": "10 min",
  "menu": [
    {
      "name": "Quarter Pounder® Deluxe",
      "price": 7.79,
      "priceFormatted": "£7.79",
      "category": "What's New",
      "available": true
    }
  ],
  "menuItemCount": 80,
  "reviews": []
}
```

### Key Output Fields

**Identity:** `restaurantId`, `drnId`, `name`, `slug`, `url`, `sourceUrl`

**Commerce:** `rating`, `reviewsCount`, `deliveryTime`, `distance`, `deliveryFee`, `currency`

**Location:** `city`, `neighborhood`, `address`, `postcode`, `country`

**Menu:** `menu[]`, `menuItemCount`

**Reviews:** `reviews[]` (`customerName`, `rating`, `comment`, `commentedAt`) — usually empty on public pages

### FAQ

**Do I need a Deliveroo account?** No. The actor reads public pages.

**Why keep `day` / `postcode` / `geohash`?** They pick which serving Deliveroo returns. A bare `/menu/...` path often 403s.

**Are menu items billed one-by-one?** No. One `restaurant-menu` event when `menu[]` is non-empty.

**Are reviews billed one-by-one?** No. One `restaurant-reviews` event per restaurant when `reviews[]` is non-empty. Public menu pages usually have no review text, so the array stays empty and the event is not charged.

**What if a URL is dead?** That restaurant is skipped and not billed. Zero successful rows fail the run.

### Support

Open an issue on the [Apify Store listing](https://apify.com/memo23/deliveroo-scraper/issues) or email **contact@data-slayer.com**.

### Additional Services

Need a scheduled postcode monitor or a merge with Uber Eats / iFood? Email the same address.

### Explore More Scrapers

- [iFood — CNPJ, Reviews & Address](https://apify.com/memo23/ifood-scraper)
- [Uber Eats Full Menu & Reviews](https://apify.com/memo23/uber-eats-scraper)
- [Talabat — Restaurants, Menus, Prices](https://apify.com/memo23/talabat-scraper)

### 🤖 For AI Agents & LLM Apps

Compact reference for agents calling this actor via the [Apify MCP server](https://mcp.apify.com) or the Apify API (`memo23/deliveroo-scraper`).

**Purpose:** Public Deliveroo restaurant records. URL mode or city/neighborhood + postcode search. One row per store, optional menu / extra / reviews.

**Minimal input:**

```json
{
  "restaurantUrls": [
    "https://deliveroo.co.uk/menu/London/fitzrovia/mcdonalds-0028-oxford-street-1?day=today&postcode=W1D3QU&time=ASAP"
  ],
  "maxRestaurants": 5
}
```

**Output:** `restaurantId`, `name`, `url`, `address`, `rating`, `deliveryTime`, `menu[{name, description, category, price, priceFormatted, imageUrl, available, popular, dietaryTags}]`, `reviews[{customerName, rating, comment, commentedAt}]`, `scrapedAt`.

**Behaviors an agent should know:**

- Always set `maxRestaurants`. Each written row is billed ($0.005).
- Extra ($0.003) fires when `address` is present. Menu ($0.005) fires when `menu[]` is non-empty. Reviews ($0.003) fire when `reviews[]` is non-empty.
- `includeReviews` defaults false. `includeMenu` and `includeExtra` default true.
- `restaurantUrls` wins over `queries`.
- Keep serving query params on menu URLs.

### ⚠️ Disclaimer

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Deliveroo plc or its subsidiaries. All trademarks mentioned are the property of their respective owners.

The scraper accesses only publicly available Deliveroo pages — no authenticated endpoints or paid Plus pricing. Users are responsible for ensuring their use complies with Deliveroo's Terms of Service and applicable data-protection law (UK GDPR, GDPR, etc.).

***

### SEO Keywords

deliveroo scraper, deliveroo menu scraper, deliveroo restaurant scraper, deliveroo prices, deliveroo uk, deliveroo dubai, food delivery intelligence, restaurant menu api, deliveroo postcode search, dark kitchen research

# Actor input Schema

## `restaurantUrls` (type: `array`):

Deliveroo menu pages. Keep ?day= \&postcode= or \&geohash= \&time= when present — they pick the serving menu. When this list is filled, location search is skipped.

## `queries` (type: `array`):

city/neighborhood pairs, e.g. london/soho, paris/le-marais, dubai/dubai-marina.

## `domain` (type: `string`):

TLD for search-mode listing URLs. Ignored when restaurantUrls already include a host.

## `postcode` (type: `string`):

Delivery postcode for UK/IE listing and for menu URLs that omit one. Example: W1D3QU.

## `maxRestaurants` (type: `integer`):

Hard cap on restaurants returned (and billed). Default 50.

## `includeMenu` (type: `boolean`):

Fetch menu items and prices. Billed once per restaurant only when menu\[] is non-empty. Default true.

## `menuMode` (type: `string`):

limited = at most maxMenuItems per restaurant. all = keep every item from the menu page. Default limited.

## `maxMenuItems` (type: `integer`):

Used when menuMode is limited. Default 80. Ignored when menuMode is all.

## `includeReviews` (type: `boolean`):

Keep customer reviews when Deliveroo publishes them on the page (name, rating, comment). Public menu pages usually have none — reviews\[] stays empty and this event is not charged. Billed once per restaurant when reviews\[] is non-empty, not per review. Default false.

## `includeExtra` (type: `boolean`):

Keep address and postcode from the menu page. Billed once per restaurant when address lands. Default true.

## `maxConcurrency` (type: `integer`):

How many restaurants to fetch in parallel. Default 4, max 8.

## Actor input object example

```json
{
  "restaurantUrls": [
    "https://deliveroo.co.uk/menu/London/fitzrovia/mcdonalds-0028-oxford-street-1?day=today&postcode=W1D3QU&time=ASAP"
  ],
  "queries": [
    "london/soho"
  ],
  "domain": "co.uk",
  "postcode": "W1D3QU",
  "maxRestaurants": 50,
  "includeMenu": true,
  "menuMode": "limited",
  "maxMenuItems": 80,
  "includeReviews": false,
  "includeExtra": true,
  "maxConcurrency": 4
}
```

# Actor output Schema

## `results` (type: `string`):

One record per restaurant — name, rating, address, delivery time, menu items and reviews when requested.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "restaurantUrls": [
        "https://deliveroo.co.uk/menu/London/fitzrovia/mcdonalds-0028-oxford-street-1?day=today&postcode=W1D3QU&time=ASAP"
    ],
    "queries": [
        "london/soho"
    ],
    "postcode": "W1D3QU"
};

// Run the Actor and wait for it to finish
const run = await client.actor("memo23/deliveroo-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "restaurantUrls": ["https://deliveroo.co.uk/menu/London/fitzrovia/mcdonalds-0028-oxford-street-1?day=today&postcode=W1D3QU&time=ASAP"],
    "queries": ["london/soho"],
    "postcode": "W1D3QU",
}

# Run the Actor and wait for it to finish
run = client.actor("memo23/deliveroo-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "restaurantUrls": [
    "https://deliveroo.co.uk/menu/London/fitzrovia/mcdonalds-0028-oxford-street-1?day=today&postcode=W1D3QU&time=ASAP"
  ],
  "queries": [
    "london/soho"
  ],
  "postcode": "W1D3QU"
}' |
apify call memo23/deliveroo-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,memo23/deliveroo-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/ynrpPQe2AeqHhfnKm/builds/7oAsfigEVOsljuwuJ/openapi.json
