# Scrape No Frills Weekly Sale Items

**Use case:** 

Get every product on sale at No Frills this week — current price, was price, unit price, and multi-buy deals, for any store by postal code. JSON or CSV.

## Input

```json
{
  "banner": "nofrills",
  "categories": [
    "meat",
    "fruits-vegetables",
    "dairy-eggs",
    "bakery",
    "pantry"
  ],
  "postal_code": "M5V 2T6",
  "group_variants": false,
  "on_sale_only": true
}
```

## Output

```json
{
  "name": {
    "label": "Product name",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "was_price": {
    "label": "Was price",
    "format": "number"
  },
  "is_on_sale": {
    "label": "On sale",
    "format": "boolean"
  },
  "multi_buy_deal": {
    "label": "Multi-buy deal",
    "format": "string"
  },
  "pc_optimum_offer": {
    "label": "PC Optimum offer",
    "format": "string"
  },
  "package_size": {
    "label": "Package size",
    "format": "string"
  },
  "store": {
    "label": "Store",
    "format": "string"
  },
  "product_url": {
    "label": "Product URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Superstore & No Frills Grocery Price Scraper API - Canada](https://apify.com/sunny_eternity/loblaws-grocery-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sunny_eternity/loblaws-grocery-scraper) to learn more, explore other use cases, and run it yourself.