# Sainsburys Milk Products Scraper

**Use case:** 

Scrape Sainsburys milk grocery results with product name, price, unit price, Nectar offer, image, and product URL. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.sainsburys.co.uk/shop/gb/groceries/fruit-veg",
  "maxItems": 50,
  "searchQuery": "milk",
  "sort": "relevance"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "🖼️ Image",
    "format": "image"
  },
  "title": {
    "label": "📝 Title",
    "format": "text"
  },
  "price": {
    "label": "💷 Price",
    "format": "number"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "text"
  },
  "brand": {
    "label": "🏷️ Brand",
    "format": "text"
  },
  "sku": {
    "label": "🔖 SKU",
    "format": "text"
  },
  "unitPrice": {
    "label": "📐 Unit Price",
    "format": "text"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

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