# Uber Eats Review Monitoring for Restaurants

**Use case:** 

Track customer reviews for any restaurant on Uber Eats: paste the store URL, get review text and dates plus the full menu. Simple reputation monitoring.

## Input

```json
{
  "storeUrls": [
    "https://www.ubereats.com/store/pizza-hut-932-8th-ave/-8LRUcceXwC0jh4Qg32Y4Q"
  ],
  "city": "new-york",
  "searchQuery": "pizza",
  "listAll": false,
  "address": "",
  "maxResults": 20,
  "includeReviews": true,
  "maxReviewsPerRestaurant": 100,
  "sort": "",
  "priceRange": ""
}
```

## Output

```json
{
  "row_type": {
    "label": "🏷 Row type",
    "format": "string"
  },
  "name": {
    "label": "📛 Restaurant",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "review_count": {
    "label": "🗳 Reviews",
    "format": "integer"
  },
  "price_range": {
    "label": "💲 Price",
    "format": "string"
  },
  "menu_item_count": {
    "label": "🍔 Menu items",
    "format": "integer"
  },
  "is_open": {
    "label": "🟢 Open",
    "format": "boolean"
  }
}
```

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