# 🌍 Scrape Uber Eats restaurants in Canada

**Use case:** 

Scrape Uber Eats Canada with locale and proxy country pre-configured: enter any Canadian address and get the restaurants delivering there, with menus and prices in CAD, ratings and reviews, delivery fee, ETA, opening hours, phone and coordinates. Change `address` to your city; switch `locale` to fr-CA for French-language menus in Québec.

## Input

```json
{
  "locale": "en-CA",
  "query": "Pizza",
  "address": "100 Queen St W, Toronto, ON M5H 2N2",
  "addressCountry": "CA",
  "diningMode": "DELIVERY",
  "storeType": "RESTAURANTS",
  "maxRows": 50,
  "urls": [
    "https://www.ubereats.com/fr/store/mcdonalds-paris-alesia/eHoH6Q_2RRikwI-xKk7qaQ"
  ],
  "getMenuCustomizations": false,
  "excludeStores": [
    "198143de-5fc7-4488-b751-6c32604454d3",
    "93a4dbc2-6c72-4789-81c5-73556737e311"
  ]
}
```

## Output

```json
{
  "logoImageUrl": {
    "label": "Restaurant Logo",
    "format": "image"
  },
  "heroImageUrl": {
    "label": "Hero Image",
    "format": "image"
  },
  "title": {
    "label": "Restaurant title",
    "format": "text"
  },
  "sanitizedTitle": {
    "label": "Sanitized Title",
    "format": "text"
  },
  "merchantType": {
    "label": "Merchant Type",
    "format": "text"
  },
  "phoneNumber": {
    "label": "Phone Number",
    "format": "text"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "menu": {
    "label": "Menu",
    "format": "array"
  },
  "featuredItems": {
    "label": "Featured Items",
    "format": "array"
  },
  "storeReviews": {
    "label": "Store Reviews",
    "format": "object"
  },
  "featuredReviews": {
    "label": "Featured Reviews",
    "format": "object"
  },
  "location": {
    "label": "Location",
    "format": "object"
  },
  "distance": {
    "label": "Distance",
    "format": "object"
  },
  "cuisineList": {
    "label": "Cuisine list",
    "format": "array"
  },
  "rating": {
    "label": "Rating",
    "format": "object"
  },
  "priceBucket": {
    "label": "Price Bucket",
    "format": "text"
  },
  "parentChain": {
    "label": "Parent Chain",
    "format": "object"
  },
  "isChain": {
    "label": "Chain",
    "format": "boolean"
  },
  "citySlug": {
    "label": "City Slug",
    "format": "text"
  },
  "slug": {
    "label": "Store Slug",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "diningMode": {
    "label": "Dining Mode",
    "format": "text"
  },
  "searchAddress": {
    "label": "Search Address",
    "format": "text"
  },
  "analytics": {
    "label": "Menu Analytics",
    "format": "object"
  },
  "storeAvailablityStatus": {
    "label": "Store Availability Status",
    "format": "text"
  },
  "isOpen": {
    "label": "Open Now",
    "format": "boolean"
  },
  "isOrderable": {
    "label": "Accepting Orders",
    "format": "boolean"
  },
  "closedMessage": {
    "label": "Closed Message",
    "format": "text"
  },
  "etaRange": {
    "label": "ETA Range",
    "format": "text"
  },
  "etaMinutes": {
    "label": "ETA Minutes",
    "format": "object"
  },
  "fareBadge": {
    "label": "Fare Badge",
    "format": "text"
  },
  "deliveryFee": {
    "label": "Delivery Fee",
    "format": "object"
  },
  "workingHoursTagline": {
    "label": "Hours Summary",
    "format": "text"
  },
  "promotions": {
    "label": "Promotions",
    "format": "array"
  },
  "hours": {
    "label": "Hours",
    "format": "array"
  },
  "currencyCode": {
    "label": "Currency Code",
    "format": "text"
  },
  "categoriesLink": {
    "label": "Categories Link",
    "format": "array"
  },
  "uuid": {
    "label": "UUID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "supportedDiningModes": {
    "label": "Supported Dining Modes",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [🍴Uber Eats Scraper [PPR]](https://apify.com/borderline/uber-eats-scraper-ppr.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/borderline/uber-eats-scraper-ppr.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/borderline/uber-eats-scraper-ppr.md

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).
