# foodpanda Scraper - Restaurants & Menus (Asia-Pacific) (`goat255/foodpanda-scraper`) Actor

Scrape foodpanda restaurants and menus without a login. List restaurants by country and city, or pull full menus by restaurant URL. Each row has ratings, cuisines, delivery fee and time, address, dish names, prices and categories.

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

## Pricing

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

## foodpanda Scraper - Restaurants & Menus

Get foodpanda restaurants and full menus across Asia-Pacific markets, no login and no API key. List every restaurant around a city or exact location, or pull the complete menu for any restaurant by its URL. Each result comes back as one clean row: ratings, cuisines, delivery fee and time, address, and, in menu mode, dish names, prices, categories and variations.

### What it does

- **Restaurant listings** - pick a country and city and get restaurants near that location, one row each, with rating, review count, cuisines, price tier, minimum order, delivery fee and delivery time.
- **Full menus** - switch to menu mode to get every dish for each restaurant: name, description, price, category, and size or option variations, with the restaurant context attached to each row.
- **By URL or by location** - pull menus for restaurants you already have links to, or let the actor find restaurants at a location first and pull their menus.
- **Eight markets** - Singapore, Malaysia, Philippines, Pakistan, Hong Kong, Taiwan and Bangladesh, with prices in each market's local currency.
- **Exact coordinates** - use a listed city, or set your own latitude and longitude for any neighbourhood.

Common uses: food and delivery market research, restaurant and menu price monitoring, competitor menu tracking, building a restaurant or dish dataset, and lead lists for food and beverage outreach.

### Input

| Field | Type | Description |
|---|---|---|
| `mode` | string | `restaurants` (list) or `menus` (dishes). Default `restaurants`. |
| `country` | string | Market to search: `sg`, `my`, `ph`, `pk`, `hk`, `tw`, `bd`. Default `sg`. |
| `city` | string | A city in that country to search around (for example `singapore`, `kuala-lumpur`, `manila`). |
| `latitude` | string | Optional. Exact latitude, for a location not in the city list. Overrides the city. |
| `longitude` | string | Optional. Exact longitude, used with `latitude`. |
| `restaurantUrls` | array | Menu mode. Direct restaurant URLs to pull menus from. When set, the location fields are ignored. |
| `maxResults` | integer | Max restaurants to return (restaurants mode) or to pull menus from (menus mode). Default 50. |
| `concurrency` | integer | How many menus to fetch in parallel. Default 5. |
| `proxyConfiguration` | object | Proxy settings. Residential proxy in the target region is on by default. |

#### Example input

```json
{
  "mode": "restaurants",
  "country": "sg",
  "city": "singapore",
  "maxResults": 100
}
```

Menu mode by URL:

```json
{
  "mode": "menus",
  "restaurantUrls": [
    "https://www.foodpanda.sg/restaurant/tu6w/example-restaurant"
  ]
}
```

### Output

Restaurants mode, one row per restaurant:

```json
{
  "type": "restaurant",
  "country": "sg",
  "code": "tu6w",
  "name": "Example Kitchen (Downtown)",
  "cuisines": ["Chinese", "Asian", "Rice Dishes"],
  "rating": 4.9,
  "reviewCount": 100,
  "priceTier": "$$$",
  "minimumOrder": 16.0,
  "deliveryFee": 4.3,
  "deliveryTimeMinutes": 30,
  "isNew": false,
  "chain": "Example Kitchen",
  "address": "123 example road",
  "city": "Singapore",
  "latitude": 1.3266,
  "longitude": 103.8448,
  "url": "https://www.foodpanda.sg/restaurant/tu6w/example-kitchen",
  "scrapedAt": "2026-08-16T12:00:00.000Z"
}
```

Menus mode, one row per dish:

```json
{
  "type": "menuItem",
  "country": "sg",
  "currency": "SGD",
  "restaurantCode": "tu6w",
  "restaurantName": "Example Kitchen (Downtown)",
  "restaurantRating": 4.9,
  "restaurantCuisines": ["Chinese", "Asian"],
  "restaurantUrl": "https://www.foodpanda.sg/restaurant/tu6w/example-kitchen",
  "category": "Vegetables",
  "name": "Stir-fried Greens",
  "description": "Wok-fried seasonal greens with garlic.",
  "price": 17.55,
  "variations": [
    { "name": "Small", "price": 17.55 },
    { "name": "Large", "price": 24.9 }
  ],
  "dietary": [],
  "isSoldOut": false,
  "imageUrl": "https://example.com/dish.jpg",
  "scrapedAt": "2026-08-16T12:00:00.000Z"
}
```

### Notes

- No login and no API key. Pick a mode, a market and a location, and run.
- Prices are in each market's local currency and reflect what the storefront shows at scrape time.
- Restaurant listings are location based. Use a listed city, or set exact `latitude` and `longitude` for any neighbourhood.
- For menu mode, a run either pulls menus for the `restaurantUrls` you provide, or finds restaurants at the location first and pulls each of their menus.
- Some fields are `null` when the restaurant genuinely does not publish them (for example a brand-new restaurant with no rating yet), so the row shape stays consistent.

### Privacy

To improve our actors we collect anonymized usage telemetry (run stats and input patterns). No personal account data is collected.

**Found this useful?** [Leave a quick review](https://apify.com/goat255/foodpanda-scraper/reviews). It takes a few seconds and it genuinely helps other people find the actor.

# Actor input Schema

## `mode` (type: `string`):

What to return. "restaurants" lists restaurants for a location, one row each. "menus" returns full menu items, one row per dish, for restaurants found at that location or for the restaurant URLs you provide.

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

Which foodpanda market to search. Sets the currency and the region for the location.

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

A city in the chosen country to search around. If a city is not listed here, set Latitude and Longitude below instead.

## `latitude` (type: `string`):

Advanced. An exact latitude to search around, for a location not in the city list. Use together with Longitude. When set, this overrides the city.

## `longitude` (type: `string`):

Advanced. An exact longitude to search around. Use together with Latitude.

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

For menus mode. Direct foodpanda restaurant URLs to pull menus from. When provided, the location fields are ignored. Example: https://www.foodpanda.sg/restaurant/tu6w/example-restaurant

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

In restaurants mode, the maximum number of restaurants to return. In menus mode, the maximum number of restaurants to pull menus from (each returns all of its dishes).

## `concurrency` (type: `integer`):

How many restaurant menus to fetch in parallel (menus mode).

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

Proxy settings. Residential proxy in the target region is recommended and enabled by default for reliable results.

## Actor input object example

```json
{
  "mode": "restaurants",
  "country": "sg",
  "city": "singapore",
  "latitude": "1.3521",
  "longitude": "103.8198",
  "restaurantUrls": [
    "https://www.foodpanda.sg/restaurant/tu6w/example-restaurant"
  ],
  "maxResults": 20,
  "concurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

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

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

# Run the Actor and wait for it to finish
run = client.actor("goat255/foodpanda-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 '{
  "latitude": "",
  "longitude": "",
  "restaurantUrls": [],
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call goat255/foodpanda-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,goat255/foodpanda-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/TRZ4HIXdLqv2hr3Ix/builds/k0r6BYI9I7VawIbue/openapi.json
