# Square location menu and price extractor

**Use case:** 

Target one Square location ID and export structured product IDs, price subunits, SKU variations, modifiers, images, and inventory flags.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://alpha-coffee-107652.square.site/"
    }
  ],
  "maxItems": 25,
  "includeDetails": true,
  "includeUnavailable": true,
  "locationIds": [
    "L7C77T70MZ0Y8"
  ]
}
```

## Output

```json
{
  "merchantName": {
    "label": "Merchant",
    "format": "text"
  },
  "locationName": {
    "label": "Location",
    "format": "text"
  },
  "productName": {
    "label": "Menu item",
    "format": "text"
  },
  "categoryNames": {
    "label": "Categories",
    "format": "array"
  },
  "priceLowFormatted": {
    "label": "Price from",
    "format": "text"
  },
  "priceHighFormatted": {
    "label": "Price to",
    "format": "text"
  },
  "soldOut": {
    "label": "Sold out",
    "format": "boolean"
  },
  "onSale": {
    "label": "On sale",
    "format": "boolean"
  },
  "variations": {
    "label": "Variations",
    "format": "object"
  },
  "modifiers": {
    "label": "Modifiers",
    "format": "object"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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