## tiktokshop/product-reviews

`GET /v1/tiktokshop/product-reviews`

Reviews for a TikTok Shop product: rating, text, reviewer, SKU, verified-purchase and incentivized flags, with the product's rating summary.

*Product reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `url` | yes | Product page URL (or pass product_id). — e.g. `https://www.tiktok.com/shop/pdp/1732195276672373419` |
| `product_id` | no | Product id — alternative to url. |
| `region` | no | Two-letter region code. |
| `cursor` | no | Page number, starting at 1. |
| `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/tiktokshop/product-reviews?url=https%3A%2F%2Fwww.tiktok.com%2Fshop%2Fpdp%2F1732195276672373419" \
  -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,
  "dropped": 0,
  "has_more": false,
  "items": [
    {
      "author": "example",
      "country": "example",
      "created_at": "2026-09-01T12:00:00Z",
      "id": "example",
      "images": [
        "example"
      ],
      "incentivized": false,
      "platform": "example",
      "product_id": "example",
      "rating": 0,
      "sku": "example",
      "text": "example",
      "verified_purchase": false
    }
  ],
  "review_count": 0
}
```

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