# Scrape Morrisons Frozen Food Prices

**Use case:** 

Scrape Morrisons frozen food prices - ice cream, chips, veg and ready meals. Get unit prices, markdowns and nutrition. Export to CSV or Excel.

## Input

```json
{
  "categories": [
    "Frozen Food"
  ],
  "maxItems": 200,
  "maxCategories": 10,
  "includeProductDetails": true,
  "onlyUnique": true
}
```

## Output

```json
{
  "name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "size": {
    "label": "Size",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceText": {
    "label": "Price (formatted)",
    "format": "text"
  },
  "wasPrice": {
    "label": "Was",
    "format": "number"
  },
  "unitPriceText": {
    "label": "Unit price",
    "format": "text"
  },
  "onPromotion": {
    "label": "On offer",
    "format": "boolean"
  },
  "promotionText": {
    "label": "Offer",
    "format": "text"
  },
  "available": {
    "label": "In stock",
    "format": "boolean"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "categoryPath": {
    "label": "Category path",
    "format": "text"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Morrisons Groceries Scraper - Prices & Nutrition](https://apify.com/vulnv/morrisons-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vulnv/morrisons-scraper) to learn more, explore other use cases, and run it yourself.