# Target Cereal and Breakfast Products Scraper

**Use case:** 

Scrape Target cereal and breakfast grocery products with TCIN, title, category, and product URL. Export to JSON or CSV.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.target.com/c/cereal-breakfast-grocery/-/N-5xt0g"
    }
  ],
  "maxItems": 5,
  "includeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "tcin": {
    "label": "TCIN",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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