Endpoint Playground
Test Crawlora's Kohl's Product Reviews API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/kohls/product/reviews?web_id=<web_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| web_id | string | Yes | Kohl's product web id, e.g. from a GET /kohls/category response's products[].web_id | |
| page | integer | No | Page number, 10 reviews per page (default 1) |
{
"code": 200,
"msg": "OK",
"data": {
"web_id": "4569328",
"total_count": 11249,
"page": 1,
"page_size": 10,
"reviews": [
{
"id": "400246016",
"title": "U Love these towels",
"text": "I have been buying them for years and love them!",
"rating": 5,
"recommended": true,
"author": "Kimmy",
"location": "Fayetteville, AR",
"submitted_at": "2026-08-12T01:40:45.000+00:00",
"secondary_ratings": [
{
"name": "Quality",
"value": 4,
"max_value": 5
}
]
}
],
"source_url": "https://apps.bazaarvoice.com/bfd/v1/clients/Kohls/api-products/cv2/resources/data/reviews.json?...",
"fetched_at": "2026-08-12T10:00:00Z"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one page of a Kohl's product's normalized customer reviews (title, text, rating, secondary ratings such as quality/durability/value/style, reviewer name and location, submission date, and photo URLs). web_id is the same identifier a GET /kohls/category response's products[].web_id field carries. A web_id with zero reviews returns a genuine zero-result response rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"web_id": "4569328",
"total_count": 11249,
"page": 1,
"page_size": 10,
"reviews": [
{
"id": "400246016",
"title": "U Love these towels",
"text": "I have been buying them for years and love them!",
"rating": 5,
"recommended": true,
"author": "Kimmy",
"location": "Fayetteville, AR",
"submitted_at": "2026-08-12T01:40:45.000+00:00",
"secondary_ratings": [
{
"name": "Quality",
"value": 4,
"max_value": 5
}
]
}
],
"source_url": "https://apps.bazaarvoice.com/bfd/v1/clients/Kohls/api-products/cv2/resources/data/reviews.json?...",
"fetched_at": "2026-08-12T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/kohls/product/reviews?web_id=<web_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"