# Scrape Tesco Pet Food Prices

**Use case:** 

Scrape Tesco pet food prices - dog food, cat food, treats and pet care. Get GTIN barcodes, unit prices and Clubcard offers. Export to CSV or Excel.

## Input

```json
{
  "region": "UK",
  "categories": [
    "pets"
  ],
  "keyword": "oat milk",
  "maxItems": 200,
  "maxPages": 1,
  "pageOffset": 1,
  "includeProductDetails": true,
  "includeReviews": false,
  "onlyUnique": true
}
```

## Output

```json
{
  "title": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "gtin": {
    "label": "GTIN / EAN",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceText": {
    "label": "Price (formatted)",
    "format": "text"
  },
  "unitPriceText": {
    "label": "Unit price",
    "format": "text"
  },
  "clubcardPrice": {
    "label": "Clubcard price",
    "format": "number"
  },
  "isClubcardPrice": {
    "label": "Has Clubcard price",
    "format": "boolean"
  },
  "promotionText": {
    "label": "Promotion",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "isAvailable": {
    "label": "In stock",
    "format": "boolean"
  },
  "superDepartment": {
    "label": "Super department",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "aisle": {
    "label": "Aisle",
    "format": "text"
  },
  "shelf": {
    "label": "Shelf",
    "format": "text"
  },
  "averageRating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "packSize": {
    "label": "Pack size",
    "format": "text"
  },
  "productId": {
    "label": "Product ID (TPNC)",
    "format": "text"
  },
  "tpnb": {
    "label": "TPNB",
    "format": "text"
  },
  "region": {
    "label": "Region",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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