## target/reviews

`GET /v1/target/reviews`

Reviews of a Target product, ten per page, with the rating distribution, recommendation rate and photo counts.

*Target product reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Target product id — e.g. `93747936` |
| `page` | no | Page number, from 0 (10 per page) — e.g. `0` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/target/reviews?id=93747936" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "author": "example",
      "helpful": 0,
      "id": "example",
      "incentivized": false,
      "photos": [
        "example"
      ],
      "platform": "example",
      "posted_at": "2026-09-01T12:00:00Z",
      "product_id": "example",
      "rating": 0,
      "recommended": false,
      "responses": [],
      "tags": [],
      "text": "example",
      "title": "example",
      "unhelpful": 0,
      "verified": false
    }
  ],
  "page": 0,
  "product_id": "example",
  "questions_count": 0,
  "rating": {
    "max": 0,
    "value": 0,
    "votes": 0
  },
  "rating_distribution": {},
  "recommended_percentage": 0,
  "total": 0,
  "total_pages": 0,
  "with_photos_count": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/target/reviews#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/target/reviews.json)
