# MenuPages competitor menu monitor workflow

**Use case:** 

Batch scrape several MenuPages restaurants for scheduled price comparisons, menu change tracking, and competitive analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://menupages.com/pings/22-mott-street-new-york"
    },
    {
      "url": "https://menupages.com/planet-pizza/411-main-st-ridgefield"
    },
    {
      "url": "https://menupages.com/connies-pizza-archer-ave/2373-s-archer-ave-chicago"
    }
  ],
  "maxItemsPerRestaurant": 500
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "text"
  },
  "restaurantName": {
    "label": "Restaurant",
    "format": "text"
  },
  "section": {
    "label": "Section",
    "format": "text"
  },
  "itemName": {
    "label": "Menu item",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "rawPrice": {
    "label": "Displayed price",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "cuisines": {
    "label": "Cuisines",
    "format": "array"
  },
  "streetAddress": {
    "label": "Address",
    "format": "text"
  },
  "locality": {
    "label": "City",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "telephone": {
    "label": "Telephone",
    "format": "text"
  },
  "restaurantImageUrl": {
    "label": "Restaurant image",
    "format": "link"
  },
  "canonicalUrl": {
    "label": "Canonical URL",
    "format": "link"
  },
  "itemId": {
    "label": "Item ID",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [MenuPages Restaurant Menu Scraper](https://apify.com/automation-lab/menupages-restaurant-menu-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/menupages-restaurant-menu-scraper) to learn more, explore other use cases, and run it yourself.