# UberEats Pizza Scraper: New York, LA, Chicago, Miami

**Use case:** 

Scrape pizza restaurants on UberEats across New York, Los Angeles, Chicago and Miami. Get up to 100 stores per city with ratings,delivery times, URLs & images.

## Input

```json
{
  "locations": [
    "New York, NY 10001, USA",
    "Los Angeles, CA 90001, USA",
    "Chicago, IL 60601, USA",
    "Miami, FL 33101, USA"
  ],
  "search_keyword": "Pizza",
  "max_search_results": 100
}
```

## Output

```json
{
  "store_uuid": {
    "label": "Store UUID",
    "format": "string"
  },
  "name": {
    "label": "Store Name",
    "format": "string"
  },
  "url": {
    "label": "Store URL",
    "format": "url"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "country_code": {
    "label": "Country Code",
    "format": "string"
  },
  "estimated_time_to_delivery": {
    "label": "Estimated Time to Delivery",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Rating Count",
    "format": "string"
  },
  "images": {
    "label": "Store Images",
    "format": "array"
  },
  "extraction_date": {
    "label": "Extraction Date",
    "format": "string"
  },
  "extraction_datetime": {
    "label": "Extraction Datetime",
    "format": "string"
  },
  "input": {
    "label": "Input",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Ubereats Stores Search By Location And Keyword](https://apify.com/datacach/ubereats-stores-search-by-location-and-keyword) with a specific input configuration. Visit the [Actor detail page](https://apify.com/datacach/ubereats-stores-search-by-location-and-keyword) to learn more, explore other use cases, and run it yourself.