# Target Product Search Scraper

**Use case:** 

Scrape Target search results for product names, prices, ratings, reviews, brands, images, sale flags, and product URLs.

## Input

```json
{
  "searchQueries": [
    "wireless earbuds",
    "desk lamp"
  ],
  "maxProductsPerSearch": 40,
  "maxSearchPages": 2,
  "sort": "relevance",
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "priceString": {
    "label": "Price",
    "format": "text"
  },
  "regularPrice": {
    "label": "Regular",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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