# Just Eat Scraper - UK Restaurants, Ratings & Delivery (`haketa/just-eat-scraper`) Actor

Scrape restaurants from Just Eat UK by postcode: name, cuisines, star rating, delivery fee, minimum order, delivery ETA, live offers, address and coordinates. Every restaurant in an area in one pass. Export to JSON, CSV or Excel.

- **URL**: https://apify.com/haketa/just-eat-scraper.md
- **Developed by:** [Haketa](https://apify.com/haketa) (community)
- **Categories:** Lead generation, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.49 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

## Just Eat Scraper 🍔🇬🇧

**Extract restaurant data from Just Eat UK — one of Britain's largest food-delivery platforms — into clean, structured data.** Enter any UK postcode and export every restaurant that delivers there, with **cuisines, star rating, delivery fee, minimum order, delivery ETA, offers, address, coordinates and live open status**. Built for food-delivery market research, competitor monitoring, lead generation and location analytics.

[![Actor](https://img.shields.io/badge/Apify-Actor-00b04f?style=flat-square\&logo=apify)](https://apify.com)
[![Market](https://img.shields.io/badge/Market-UK%20🇬🇧-012169?style=flat-square)](https://apify.com)
[![Delivery data](https://img.shields.io/badge/Delivery-Fee%20%7C%20Min%20%7C%20ETA-brightgreen?style=flat-square)](https://apify.com)
[![Ratings](https://img.shields.io/badge/Ratings-Included-success?style=flat-square)](https://apify.com)
[![Offers](https://img.shields.io/badge/Offers-Tracked-e4002b?style=flat-square)](https://apify.com)
[![Output](https://img.shields.io/badge/Output-JSON%20%7C%20CSV%20%7C%20Excel-2b7489?style=flat-square)](https://apify.com)
[![By postcode](https://img.shields.io/badge/Search-By%20postcode-blue?style=flat-square)](https://apify.com)
[![No code](https://img.shields.io/badge/No--code-Friendly-9cf?style=flat-square)](https://apify.com)
[![Maintained](https://img.shields.io/badge/Maintained-Yes-brightgreen?style=flat-square)](https://apify.com)

***

### 🎯 What does Just Eat Scraper do?

Just Eat is one of the UK's biggest online food-delivery marketplaces, listing tens of thousands of restaurants and takeaways. This actor turns any UK postcode into a structured dataset of every restaurant serving that area.

Give it a **postcode** (or several) and it will:

- 🔎 Return **every restaurant** that delivers to or collects in that area — in one pass
- ⭐ Include the **star rating and number of ratings**
- 🚚 Capture full **delivery intelligence**: delivery fee, minimum order and ETA
- 🏷️ Add **live offers and deals** (percentage off, stamp cards…)
- 🍜 List each restaurant's **cuisines**
- 📍 Provide **address and geo-coordinates**
- 🟢 Flag **live open status** for delivery and collection
- 🧹 Deliver **clean, deduplicated, structured records** — no HTML, no clutter
- ⬇️ Export to **JSON, CSV, Excel, HTML or via API** in one click

No login, no browser extensions, no manual copy-paste.

***

### ✨ Key features

| Feature | Description |
| --- | --- |
| **Search by postcode** | Enter any UK postcode or outcode and get the full local restaurant list. |
| **Delivery intelligence** | Delivery fee, minimum order value and delivery ETA for every restaurant. |
| **Ratings** | Star rating and total number of ratings. |
| **Offers & deals** | Live promotions such as percentage discounts and stamp cards. |
| **Cuisines** | Every cuisine tag per restaurant. |
| **Geo data** | Address, city, postcode and latitude/longitude. |
| **Live status** | Whether each restaurant is open now for delivery and collection. |
| **Cuisine filter** | Optionally keep only the cuisines you care about. |
| **Deduplicated output** | Each restaurant appears once, identified by its unique ID. |
| **Clean exports** | JSON, CSV, Excel, HTML table, RSS or JSON API. |

***

### 📥 Input

The actor accepts a simple, no-code input form.

#### Option A — by postcode (easiest)

```json
{
    "postcodes": ["EC4M7RF", "M1", "B1"],
    "maxItems": 1000
}
```

#### Option B — filter by cuisine

```json
{
    "postcodes": ["SW1A"],
    "cuisines": ["Pizza", "Italian"],
    "onlyOpenForDelivery": true,
    "maxItems": 500
}
```

#### Input parameters

| Field | Type | Description |
| --- | --- | --- |
| `postcodes` | array | UK postcodes or outcodes to search. |
| `cuisines` | array | Optional cuisine filter (e.g. Pizza, Chinese, Halal). |
| `onlyOpenForDelivery` | boolean | Keep only restaurants open now for delivery. Default `false`. |
| `maxItems` | integer | Maximum number of restaurants to collect. Default `1000`. |
| `proxyConfiguration` | object | Proxy settings. Apify Proxy is recommended and on by default. |

***

### 📤 Output

Each restaurant is returned as a clean JSON object:

```json
{
    "id": "244418",
    "name": "Chicken Valley Holborn",
    "url": "https://www.just-eat.co.uk/restaurants-chicken-valley-london/menu",
    "cuisines": ["Chicken", "Burgers", "Halal"],
    "rating": 5,
    "ratingCount": 314,
    "address": "60 Theobalds Road",
    "city": "London",
    "postalCode": "WC1X 8SF",
    "latitude": 51.52074,
    "longitude": -0.116786,
    "deliveryCost": 0.69,
    "minimumDeliveryValue": 0,
    "deliveryEtaMinutes": 25,
    "deliveryEtaRange": "10-25",
    "driveDistanceMeters": 1061,
    "isDelivery": true,
    "isCollection": true,
    "isOpenNowForDelivery": true,
    "isOpenNowForCollection": true,
    "isNew": false,
    "isPremier": false,
    "deals": [{ "type": "Percent", "description": "Save 10% • Spend £20" }],
    "logoUrl": "https://.../244418.gif",
    "searchedPostcode": "EC4M7RF"
}
```

#### Output fields

| Field | Type | Description |
| --- | --- | --- |
| `id` | string | Unique Just Eat restaurant ID. |
| `name` | string | Restaurant name. |
| `url` | string | Restaurant page URL. |
| `cuisines` | array | Cuisine tags. |
| `rating` / `ratingCount` | number | Star rating and number of ratings. |
| `address` / `city` / `postalCode` | string | Location details. |
| `latitude` / `longitude` | number | Geo-coordinates. |
| `deliveryCost` | number | Delivery fee (GBP). |
| `minimumDeliveryValue` | number | Minimum order value for delivery. |
| `deliveryEtaMinutes` / `deliveryEtaRange` | | Delivery ETA and range in minutes. |
| `driveDistanceMeters` | number | Distance from the searched area. |
| `isDelivery` / `isCollection` | boolean | Service options offered. |
| `isOpenNowForDelivery` / `isOpenNowForCollection` | boolean | Live open status. |
| `isNew` / `isPremier` | boolean | New listing / premier partner flags. |
| `deals` | array | Live offers (type + description). |
| `logoUrl` | string | Restaurant logo. |
| `searchedPostcode` | string | The postcode this result came from. |

You can download the dataset as **JSON, CSV, Excel, HTML, RSS or XML**, or fetch it programmatically through the Apify API.

***

### 🚀 How to use Just Eat Scraper (step by step)

1. Click **Try for free** / **Start**.
2. Enter one or more **UK postcodes**.
3. (Optional) Add a **cuisine filter** or enable **Only open for delivery now**.
4. Set **maxItems** to how many restaurants you want.
5. Click **Save & Start**.
6. When the run finishes, open the **Dataset** tab and **Export** to your preferred format — or grab it via API.

That's it. No code required.

***

### 💡 Use cases

- **Food-delivery market research** — Map restaurant density, cuisines and pricing by area.
- **Competitor monitoring** — Track ratings, delivery fees, minimum orders and offers across a city.
- **Lead generation** — Build lists of restaurants and takeaways by area and cuisine.
- **Delivery-fee & offer analytics** — Compare delivery costs, ETAs and promotions at scale.
- **Location & expansion analysis** — Assess supply and competition before opening or partnering.
- **Menu & availability tracking** — Monitor which restaurants are live for delivery in an area.

***

### 🚚 Why the delivery intelligence matters

Most restaurant lists stop at name and rating. This actor returns the **full delivery picture**: the **delivery fee**, the **minimum order value**, the **ETA** (with range) and the **live open status** — plus any **active offers**. That's exactly what you need to analyze pricing, competition and promotions across an area, not just a directory.

***

### ⏱️ How many restaurants can I collect?

A single busy postcode can return **thousands** of restaurants in one pass — there's no page-by-page crawling. Add more postcodes to widen coverage, and set `maxItems` to cap the volume.

***

### 🔌 Integrations & automation

Because this runs on Apify, you can:

- 📅 **Schedule** runs (daily, weekly) to keep a live restaurant & offers feed.
- 🔗 Push results to **Google Sheets, Airtable, Slack, Zapier, Make, or any webhook**.
- 🧩 Call it from your backend with the **Apify API** and SDKs (JavaScript / Python).
- 🔔 Use **webhooks** to trigger downstream workflows the moment a run completes.

#### Call via API (example)

```bash
curl -X POST "https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
        "postcodes": ["EC4M7RF"],
        "maxItems": 1000
      }'
```

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

const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('YOUR_ACTOR_ID').call({
    postcodes: ['SW1A', 'M1'],
    cuisines: ['Pizza'],
    maxItems: 500,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

***

### ❓ FAQ

**Do I need a Just Eat account or API key?**
No. Just provide one or more UK postcodes.

**What area does a postcode cover?**
Every restaurant that delivers to or collects in that postcode's area — often thousands in dense cities.

**Does it include delivery fees and minimum order?**
Yes — `deliveryCost`, `minimumDeliveryValue` and `deliveryEtaMinutes` are included for each restaurant.

**Does it include offers?**
Yes — live deals such as percentage discounts and stamp cards are returned in `deals`.

**Can I filter by cuisine?**
Yes — pass one or more cuisines and only matching restaurants are kept.

**Are results deduplicated?**
Yes. Each restaurant is uniquely identified and appears once per run, even across overlapping postcodes.

**What formats can I export?**
JSON, CSV, Excel, HTML, RSS and XML — via the dashboard or the API.

**How do I keep data fresh?**
Schedule the actor to run on the interval you need; each run returns the current live listings, fees and offers.

***

### 📌 Tips for best results

- **Use outcodes for breadth.** A short outcode like `M1` or `SW1A` covers a wide area.
- **Combine postcodes for a city.** Add several postcodes to map a whole city; results are deduplicated.
- **Filter by cuisine for focus.** Narrow to the cuisines you're analyzing.
- **Schedule for freshness.** Fees, ETAs and offers change often — a scheduled run keeps your data current.

***

### ⚖️ Legal & responsible use

This actor is intended for lawful data collection such as market research, analytics and lead generation. You are responsible for how you use the collected data. Only collect publicly available information, respect the target website's Terms of Service and `robots.txt`, and comply with all applicable laws and regulations. Do not use the data for spam or any unlawful purpose. This actor is an independent tool and is **not affiliated with, endorsed by, or connected to Just Eat** or its parent companies. All trademarks belong to their respective owners.

***

### 🛟 Support

Questions, feature requests or an issue with the data? Open an issue on the actor's page — feedback is welcome and helps improve the tool.

***

⭐ **If this actor saves you time, please leave a review — it really helps!**

# Actor input Schema

## `postcodes` (type: `array`):

One or more UK postcodes or outcodes to search (e.g. EC4M7RF, SW1A, M1, B1). Each returns every restaurant that delivers to or collects in that area.

## `cuisines` (type: `array`):

Keep only restaurants matching these cuisines (e.g. Pizza, Chinese, Indian, Halal, Burgers). Leave empty for all cuisines.

## `onlyOpenForDelivery` (type: `boolean`):

Keep only restaurants currently open for delivery.

## `maxItems` (type: `integer`):

Maximum number of restaurants to collect across all postcodes.

## `proxyConfiguration` (type: `object`):

Proxy settings. Apify Proxy is enabled by default and recommended for reliable results at scale.

## Actor input object example

```json
{
  "postcodes": [
    "EC4M7RF"
  ],
  "onlyOpenForDelivery": false,
  "maxItems": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `id` (type: `string`):

Just Eat restaurant ID

## `name` (type: `string`):

Restaurant name

## `url` (type: `string`):

Restaurant page URL

## `rating` (type: `string`):

Star rating

## `ratingCount` (type: `string`):

Number of ratings

## `city` (type: `string`):

City

## `postalCode` (type: `string`):

Restaurant postcode

## `deliveryCost` (type: `string`):

Delivery fee (GBP)

## `minimumDeliveryValue` (type: `string`):

Minimum order value

## `deliveryEtaMinutes` (type: `string`):

Delivery ETA in minutes

## `isOpenNowForDelivery` (type: `string`):

Open now for delivery

# 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 = {
    "postcodes": [
        "EC4M7RF"
    ],
    "maxItems": 1000
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/just-eat-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 = {
    "postcodes": ["EC4M7RF"],
    "maxItems": 1000,
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/just-eat-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 '{
  "postcodes": [
    "EC4M7RF"
  ],
  "maxItems": 1000
}' |
apify call haketa/just-eat-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,haketa/just-eat-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/hXvjCI0718cVIoi15/builds/O4HbRSI4ZD3crdYRz/openapi.json
