# Just Eat Scraper — Restaurants & Ratings (IE, IT, ES) (`studio-amba/just-eat-scraper`) Actor

Scrape restaurants from Just Eat Ireland, Just Eat Italia and Just Eat España: names, cuisines, ratings, review counts, delivery fees and times, minimum order values. Search by city or postcode. No login, no cookies.

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

## Pricing

from $2.00 / 1,000 result 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/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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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 — Restaurants & Ratings (IE, IT, ES)

Scrape restaurant data from the Just Eat brand sites with one actor: **Just Eat Ireland** (just-eat.ie), **Just Eat Italia** (justeat.it) and **Just Eat España** (just-eat.es). Get every restaurant delivering to a city or postcode — names, cuisines, ratings, review counts, delivery fees, delivery times and minimum order values.

No login, no cookies, no session tokens. Pick a country, type a city, run.

### Why use this actor?

Food delivery market data is sold by at least five commercial data services, usually as expensive subscriptions. This actor gives you the same raw data on demand: competitive pricing analysis for restaurants, delivery-fee benchmarking, market-entry research, or lead lists of restaurants per city and cuisine. One run on a big city returns 600–1,100 restaurants in under a minute.

### What it covers

| Brand | Country | Input value | Currency |
|-------|---------|-------------|----------|
| Just Eat Ireland | Ireland | `ie` | EUR |
| Just Eat Italia | Italy | `it` | EUR |
| Just Eat España | Spain | `es` | EUR |

All three brands run on the same Just Eat restaurant directory, so the data model is identical across countries. The same run works the same way in Dublin, Milan or Madrid.

**Note on scope**: this actor covers the restaurant directory (listings, ratings, delivery fees) only. Unlike the sibling `takeaway-scraper` actor (Lieferando, Thuisbezorgd, Pyszne, Takeaway.com), Just Eat's Ireland/Italy/Spain markets don't expose menu items through an open API — only the restaurant listing is available this way. Each restaurant row includes a direct link to its public menu page.

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | String | No | `ie` (Just Eat Ireland), `it` (Just Eat Italia) or `es` (Just Eat España). Default: `ie` |
| `location` | String | No | City name (`Dublin`, `Milano`, `Madrid`), postcode, or literal coordinates (`53.35,-6.26`). Default: `Dublin` |
| `serviceType` | String | No | `delivery` (default) or `collection` |
| `maxResults` | Integer | No | Maximum restaurants to return (default: 100) |
| `proxyConfiguration` | Object | No | Proxy settings; the automatic default works fine |

City names are resolved offline against a bundled table of the biggest cities per country. Postcodes and smaller towns fall back to OpenStreetMap geocoding automatically.

### Output

One row per restaurant.

| Field | Type | Example |
|-------|------|---------|
| `restaurantId` | String | `"3735"` |
| `name` | String | `"Long Thanh Chinese"` |
| `brand` | String | `"just-eat"` |
| `cuisines` | Array | `["Chinese", "Asian fusion"]` |
| `rating` | Number | `4.3` (0–5 scale) |
| `ratingCount` | Integer | `949` |
| `deliveryFee` | Number | `3` |
| `deliveryTimeMinutes` | Integer | `43` |
| `minimumOrderValue` | Number | `15` |
| `currency` | String | `"EUR"` |
| `address` | String | `"14 North Strand"` |
| `city` | String | `"Dublin"` |
| `postcode` | String | `"Dublin 1"` |
| `latitude` / `longitude` | Number | `53.355` / `-6.246` |
| `isOpen` | Boolean | `true` |
| `url` | String | Public menu page on the brand site |
| `logoUrl` | String | Restaurant logo image |
| `country` | String | `"ie"` |
| `serviceType` | String | `"delivery"` |
| `scrapedAt` | String | ISO timestamp |

### Example output

```json
{
    "restaurantId": "3735",
    "name": "Long Thanh Chinese",
    "brand": "just-eat",
    "cuisines": ["Chinese", "Asian fusion", "Deals"],
    "rating": 4.3,
    "ratingCount": 949,
    "deliveryFee": 3,
    "deliveryTimeMinutes": 43,
    "minimumOrderValue": 15,
    "currency": "EUR",
    "address": "14 North Strand",
    "city": "Dublin",
    "postcode": "Dublin 1",
    "latitude": 53.355465,
    "longitude": -6.246086,
    "isOpen": true,
    "url": "https://www.just-eat.ie/restaurants--long-thanh-dublin-1/menu",
    "logoUrl": "https://d2egcvq7li5bpq.cloudfront.net/ie/images/restaurants/3735.gif",
    "country": "ie",
    "serviceType": "delivery",
    "scrapedAt": "2026-07-13T10:00:00.000Z"
}
````

### How to scrape Just Eat data

Just Eat is one of Europe's largest food delivery platforms, live in Ireland, Italy and Spain (this actor) plus several more countries under different local brand names. To scrape it:

1. Set `country` to `ie`, `it` or `es`.
2. Set `location` to any city in that country (`Dublin`, `Cork`; `Milano`, `Roma`; `Madrid`, `Barcelona`) or a postcode.
3. Run. A single Milan run returns 1,000+ restaurants with ratings, cuisines, delivery fees and minimum order values.
4. Use the `url` field on each row to open the restaurant's public menu page directly.

The same steps work for all three countries — only the `country` value changes.

### How to scrape Just Eat Ireland data

Set `country` to `ie` and `location` to an Irish city (`Dublin`, `Cork`, `Limerick`, `Galway`) or postcode. Dublin returns roughly 670 restaurants. Prices are in EUR.

### How to scrape Just Eat Italia data

Set `country` to `it` and `location` to an Italian city (`Roma`, `Milano`, `Napoli`, `Torino`) or postcode. Milan returns roughly 1,100 restaurants. Prices are in EUR.

### How to scrape Just Eat España data

Set `country` to `es` and `location` to a Spanish city (`Madrid`, `Barcelona`, `Valencia`, `Sevilla`) or postcode. Madrid returns roughly 700 restaurants. Prices are in EUR.

### Use cases

- **Restaurant market analysis** — cuisine mix, ratings distribution and delivery pricing per city
- **Delivery fee benchmarking** — compare fees and minimum order values across neighbourhoods
- **Lead generation** — restaurant lists with addresses and cuisines, filtered by city
- **Market entry research** — measure platform coverage in any Irish, Italian or Spanish city
- **Competitive tracking** — monitor which chains and independents are active in a market

### Tips

- One run covers one delivery point. For full-city coverage of a large metro, run a few postcodes spread across the city and deduplicate on `restaurantId`.
- `serviceType: "collection"` returns the pickup-oriented view with collection open states.
- Coordinates input (`"53.35,-6.26"`) skips geocoding entirely — useful for automated pipelines.
- Empty input works: it defaults to Just Eat Ireland around Dublin with 100 results.
- Just Eat's UK (just-eat.co.uk) and France (just-eat.fr) sites run on a different backend that isn't covered by this actor or any of our other scrapers.

### Related scrapers

- [Lieferando & Takeaway Scraper](https://apify.com/studio-amba/takeaway-scraper) — Lieferando.de/.at, Thuisbezorgd.nl, Pyszne.pl and Takeaway.com, with full menu scraping
- [Wolt Scraper](https://apify.com/studio-amba/wolt-scraper) — restaurants and menus from Wolt across Northern and Eastern Europe
- [Albert Heijn Scraper](https://apify.com/studio-amba/albert-heijn-scraper) — the largest Dutch supermarket
- [Tesco Scraper](https://apify.com/studio-amba/tesco-scraper) — full UK grocery catalogue with prices

Browse all our European scrapers on the [Studio AMBA profile](https://apify.com/actors/studio-amba).

### Legal

This actor scrapes publicly available data only. It does not log in, does not access personal data, and respects the platforms' public interfaces. You are responsible for how you use the data — check the applicable terms and laws for your use case.

# Actor input Schema

## `country` (type: `string`):

Which brand to scrape: ie = Just Eat Ireland, it = Just Eat Italia, es = Just Eat España.

## `location` (type: `string`):

Where to search. A city name ('Dublin', 'Milano', 'Madrid'), a postcode, or literal coordinates ('53.35,-6.26'). One search returns every restaurant delivering to that point — hundreds to 1,000+ in big cities.

## `serviceType` (type: `string`):

Delivery (default) or collection/pickup. Affects which restaurants are returned and their open state.

## `maxResults` (type: `integer`):

Maximum number of restaurants to return.

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

Proxy settings. The restaurant directory API is open, so the default automatic proxy is plenty.

## Actor input object example

```json
{
  "country": "ie",
  "location": "Dublin",
  "serviceType": "delivery",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "location": "Dublin",
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/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 = {
    "location": "Dublin",
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/just-eat-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "location": "Dublin",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call studio-amba/just-eat-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=studio-amba/just-eat-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Just Eat Scraper — Restaurants & Ratings (IE, IT, ES)",
        "description": "Scrape restaurants from Just Eat Ireland, Just Eat Italia and Just Eat España: names, cuisines, ratings, review counts, delivery fees and times, minimum order values. Search by city or postcode. No login, no cookies.",
        "version": "0.1",
        "x-build-id": "qqL7Lj5BfXpqEERLF"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/studio-amba~just-eat-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-studio-amba-just-eat-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/studio-amba~just-eat-scraper/runs": {
            "post": {
                "operationId": "runs-sync-studio-amba-just-eat-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/studio-amba~just-eat-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-studio-amba-just-eat-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "country": {
                        "title": "Country / brand",
                        "enum": [
                            "ie",
                            "it",
                            "es"
                        ],
                        "type": "string",
                        "description": "Which brand to scrape: ie = Just Eat Ireland, it = Just Eat Italia, es = Just Eat España.",
                        "default": "ie"
                    },
                    "location": {
                        "title": "City or postcode",
                        "type": "string",
                        "description": "Where to search. A city name ('Dublin', 'Milano', 'Madrid'), a postcode, or literal coordinates ('53.35,-6.26'). One search returns every restaurant delivering to that point — hundreds to 1,000+ in big cities."
                    },
                    "serviceType": {
                        "title": "Service type",
                        "enum": [
                            "delivery",
                            "collection"
                        ],
                        "type": "string",
                        "description": "Delivery (default) or collection/pickup. Affects which restaurants are returned and their open state.",
                        "default": "delivery"
                    },
                    "maxResults": {
                        "title": "Max restaurants",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of restaurants to return.",
                        "default": 100
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. The restaurant directory API is open, so the default automatic proxy is plenty."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
