# Noon Food Scraper - Restaurants & Menus (`thirdwatch/noon-food-scraper`) Actor

Scrape restaurants and menus from food.noon.com - names, ratings, delivery times, fees, and full menu items with prices. UAE and Saudi Arabia.

- **URL**: https://apify.com/thirdwatch/noon-food-scraper.md
- **Developed by:** [Thirdwatch](https://apify.com/thirdwatch) (community)
- **Categories:** Automation, E-commerce
- **Stats:** 19 total users, 1 monthly users, 77.4% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 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/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

## Noon Food Scraper

> **Thirdwatch portfolio:** 5K users across 88 public Actors, 2M+ records delivered, and >99% run success. [Explore all Thirdwatch Actors](https://apify.com/thirdwatch).

> Scrape restaurants and menus from Noon's public UAE food-delivery storefront.

### What you get

Extract restaurant listings from Noon Food zones: names, ratings, delivery times, delivery fees, images, and outlet URLs. Optionally pull the full menu for each restaurant — items, prices, and categories. The actor uses Noon's public UAE JSON catalog and guest-menu services, with a higher-memory storefront fallback during catalog outages.

### Output fields (restaurants)

| Field | Description |
|-------|-------------|
| `name` | Restaurant name |
| `rating` | Customer rating |
| `delivery_time` | Estimated delivery time (e.g., "25-35 min") |
| `delivery_fee` | Delivery fee with currency (e.g., "AED 5.00") |
| `image_url` | Restaurant image URL |
| `url` | Direct outlet URL on food.noon.com |
| `zone` | Zone/area name |
| `country` | Country code (`uae-en`) |
| `menu_items` | Array of menu items (when `scrapeMenu` is enabled) |
| `scraped_at` | Timestamp |

### Output fields (menu items, when enabled)

| Field | Description |
|-------|-------------|
| `name` | Menu item name |
| `price` | Item price (numeric) |
| `currency` | Currency (AED or SAR) |
| `category` | Menu category (e.g., "Meals", "Desserts") |

### Example output

```json
{
    "name": "McDonald's",
    "rating": 4.5,
    "delivery_time": "25-35 min",
    "delivery_fee": "AED 5.00",
    "image_url": "https://f.nooncdn.com/...",
    "url": "https://food.noon.com/uae-en/outlet/abc123/",
    "zone": "Downtown",
    "country": "uae-en",
    "menu_items": [
        {
            "name": "Big Mac Meal",
            "price": 32.0,
            "currency": "AED",
            "category": "Meals"
        }
    ],
    "scraped_at": "2026-04-11T10:30:00+00:00"
}
```

### Input parameters

| Parameter | Required | Description |
|-----------|----------|-------------|
| `zones` | No | Zone/area names to scrape (e.g., `["Downtown", "Dubai Marina"]`). Use `["auto"]` to iterate all available zones. |
| `country` | No | `uae-en`. Default `uae-en`. |
| `maxResults` | No | Maximum total restaurants across all zones. Default `10`. Set `0` for unlimited. |
| `scrapeMenu` | No | Visit each restaurant's outlet page for full menu items with prices. Default `false`. |

### Available zones

- **UAE (Dubai)**: Downtown, Dubai Marina, JBR, Business Bay, DIFC, Al Barsha, Jumeirah, Deira, Bur Dubai.
- **UAE (Abu Dhabi)**: Al Reem, Yas Island, Khalifa City.

Zone names must match the URL format used by food.noon.com. Use `["auto"]` if you want the actor to discover them.

### Use cases

- **Food-delivery analysts**: Track competition between Noon Food, Talabat, and Deliveroo in GCC markets.
- **Restaurant chains**: Monitor your own ratings and delivery fees vs. neighboring competitors.
- **Market researchers**: Build MENA food-delivery datasets zone by zone.
- **Cloud-kitchen operators**: Identify which zones have the thinnest cuisine coverage — and your best shot at a new brand.

### Pricing

Pay-per-result pricing. Tiered discounts apply automatically based on usage volume.

| Tier | Price per result |
|------|------------------|
| FREE | $0.005 |
| BRONZE | $0.004 |
| SILVER | $0.003 |
| GOLD | $0.0025 |

### Limitations

- Zone names must match Noon Food's URL format exactly (the scraper prints available zones on mismatch).
- Menu availability changes with time of day and restaurant open hours.
- The public Noon Food web storefront currently exposes UAE restaurant data only. Saudi food ordering is app-only and is not scraped by this actor.
- Browser fallback requires a 2048 MB run when Noon's canonical catalog is unavailable.
- No review text — only the aggregate rating.

### Compared to alternatives

- **vs. Noon Food Partner API**: Not publicly available — restricted to registered restaurant partners and only exposes their own catalog. This actor is the public-data alternative.
- **vs. other Noon Food scrapers**: No direct Apify Store competitor at this time — this is the only Noon Food scraper on the platform.

Pairs well with [Talabat Scraper](https://apify.com/thirdwatch/talabat-scraper?fpr=9m2cd6) and [Deliveroo Scraper](https://apify.com/thirdwatch/deliveroo-scraper?fpr=9m2cd6) for full Middle East food-delivery coverage.

### FAQ

**Which country can this actor scrape?**
The UAE. Noon offers food ordering in Saudi Arabia through its app, but its public food.noon.com storefront currently redirects Saudi locale requests to the UAE catalog.

**Do I need a Noon account?**
No. Only publicly visible restaurant listings and outlet menus are scraped.

**Can I scrape all zones at once?**
Yes — pass `["auto"]` in `zones` to iterate every zone the site exposes for your selected country.

**How does `maxResults` interact with multiple zones?**
It caps total restaurants across all zones, not per-zone. Set to `0` for unlimited.

Last verified: 2026-08

More scrapers at [thirdwatch.dev](https://thirdwatch.dev).

# Actor input Schema

## `zones` (type: `array`):

Zone/area names to scrape (e.g., 'Downtown', 'Dubai Marina', 'Al Reem'). Use 'auto' to scrape all available zones. Check the run log for available zone names if a zone isn't found.

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

Which country to scrape restaurants from.

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

Maximum total number of restaurants to extract across all zones. Menu scraping is capped lower to keep runs affordable.

## `scrapeMenu` (type: `boolean`):

Visit each restaurant's outlet page to extract full menu with item names, prices, and categories. Slower but provides complete data; menu runs are capped to 25 restaurants.

## Actor input object example

```json
{
  "zones": [
    "auto"
  ],
  "country": "uae-en",
  "maxResults": 10,
  "scrapeMenu": false
}
```

# Actor output Schema

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

No description

# 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 = {
    "zones": [
        "auto"
    ],
    "maxResults": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("thirdwatch/noon-food-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 = {
    "zones": ["auto"],
    "maxResults": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("thirdwatch/noon-food-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 '{
  "zones": [
    "auto"
  ],
  "maxResults": 10
}' |
apify call thirdwatch/noon-food-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,thirdwatch/noon-food-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/MG5mfX02w4tjGfyYr/builds/vBEDDEko0aesMKZzv/openapi.json
