# Target verified purchase review extractor

**Use case:** 

Extract verified-purchase Target reviews for one product TCIN, including review text, stars, secondary scores, and helpfulness.

## Input

```json
{
  "productUrls": [
    "https://www.target.com/p/-/A-13521110"
  ],
  "tcins": [
    "13521110"
  ],
  "maxReviewsPerProduct": 50,
  "sort": "most_recent",
  "verifiedOnly": true,
  "reviewsWithPhotosOnly": false,
  "includeRatingsOnly": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "productTitle": {
    "label": "Product",
    "format": "text"
  },
  "tcin": {
    "label": "TCIN",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "text"
  },
  "reviewText": {
    "label": "Review text",
    "format": "text"
  },
  "authorNickname": {
    "label": "Reviewer",
    "format": "text"
  },
  "submittedAt": {
    "label": "Submitted",
    "format": "date"
  },
  "isVerifiedPurchase": {
    "label": "Verified",
    "format": "boolean"
  },
  "isRecommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "helpfulCount": {
    "label": "Helpful",
    "format": "number"
  },
  "photoUrls": {
    "label": "Photos",
    "format": "array"
  },
  "secondaryRatings": {
    "label": "Secondary ratings",
    "format": "text"
  },
  "aggregateAverageRating": {
    "label": "Average",
    "format": "number"
  },
  "aggregateRatingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "aggregateWrittenReviewCount": {
    "label": "Written reviews",
    "format": "number"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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