# Scrape All Restaurants in a City (Uber Eats)

**Use case:** 

Pull every restaurant in a city from Uber Eats - names, ratings, cuisines, prices, full menus, and delivery ETAs. Full market coverage, pay per result.

## Input

```json
{
  "storeUrls": [],
  "city": "new-york",
  "searchQuery": "pizza",
  "listAll": true,
  "address": "200 W 57th St, New York, NY",
  "maxResults": 200,
  "includeReviews": false,
  "maxReviewsPerRestaurant": 20,
  "sort": "",
  "priceRange": ""
}
```

## Output

```json
{
  "name": {
    "label": "📛 Restaurant",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "review_count": {
    "label": "🗳 Reviews",
    "format": "integer"
  },
  "price_range": {
    "label": "💲 Price",
    "format": "string"
  },
  "address": {
    "label": "📍 Address",
    "format": "string"
  },
  "menu_item_count": {
    "label": "🍔 Menu items",
    "format": "integer"
  }
}
```

## About this Actor

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