# Scrape Waitrose Bakery Products

**Use case:** 

Crawl the Waitrose bakery aisle for bread, pastries, and cakes with prices, unit prices, and images. Export anywhere.

## Input

```json
{
  "searchTerms": [
    "whole milk",
    "sourdough"
  ],
  "startUrls": [
    {
      "url": "https://www.waitrose.com/ecom/shop/browse/groceries/bakery"
    }
  ],
  "scrapeOffers": false,
  "maxResults": 200,
  "descendCategories": true,
  "maxCategoryDepth": 6,
  "maxConcurrency": 8,
  "incremental": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "skipReposts": false,
  "notify": {},
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "GB"
  }
}
```

## Output

```json
{
  "name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "size": {
    "label": "Size",
    "format": "text"
  },
  "displayPrice": {
    "label": "Price",
    "format": "text"
  },
  "onOffer": {
    "label": "On Offer",
    "format": "boolean"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "productUrl": {
    "label": "URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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