# Scrape Full MILKRUN Store Catalog

**Use case:** 

Scrape a full MILKRUN store catalog by delivery area and export products, prices, stock levels, categories, SKUs, images, and specials.

## Input

```json
{
  "deliveryAddresses": [
    "Bondi Beach, 2026"
  ],
  "searchTerms": [
    "milk"
  ],
  "scrapeFullCatalog": true,
  "includeProductDetails": false,
  "facilities": [
    "Groceries"
  ],
  "maxProductsPerQuery": 500
}
```

## Output

```json
{
  "deliveryArea": {
    "label": "Delivery Area",
    "format": "object"
  },
  "sku": {
    "label": "SKU",
    "format": "text"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "wasPrice": {
    "label": "Was",
    "format": "text"
  },
  "comparativeUnitPrice": {
    "label": "Unit Price",
    "format": "text"
  },
  "isSpecial": {
    "label": "Special",
    "format": "boolean"
  },
  "isAvailable": {
    "label": "Available",
    "format": "boolean"
  },
  "availableQuantity": {
    "label": "Stock",
    "format": "number"
  },
  "image": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [Milkrun Product Scraper](https://apify.com/muhammetakkurtt/milkrun-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/muhammetakkurtt/milkrun-product-scraper) to learn more, explore other use cases, and run it yourself.