## kohls/reviews

`GET /v1/kohls/reviews`

Shopper reviews of a product: rating, title, text, author, location, verified purchase, recommendation and secondary ratings such as fit and comfort.

*Kohl's product reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Product id, the number after prd- in the product URL — e.g. `3910467` |
| `page` | no | Page number — e.g. `1` |
| `limit` | no | Reviews per page, at most 50 — e.g. `8` |
| `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:** 3 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/kohls/reviews?id=3910467" \
  -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",
      "comments_count": 0,
      "context": {
        "age": "example",
        "bodytype": "example",
        "lengthofownership": "example"
      },
      "helpful": 0,
      "id": "example",
      "location": "example",
      "not_helpful": 0,
      "photos": [],
      "product_id": "example",
      "rating": 0,
      "recommended": false,
      "secondary_ratings": {
        "comfort": 0,
        "durability": 0,
        "fit": 0,
        "quality": 0,
        "style": 0,
        "value": 0
      },
      "submitted_at": "2026-09-01T12:00:00Z",
      "text": "example",
      "title": "example",
      "verified_purchaser": false
    }
  ],
  "page": 0,
  "product": {
    "brand": "example",
    "category_id": "example",
    "description": "example",
    "id": "example",
    "image_url": "https://example.com/example",
    "title": "example"
  },
  "product_id": "example",
  "total": 0
}
```

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