Endpoint Playground
Test Crawlora's Kroger 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/kroger/product/reviews?upc=<upc>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| upc | string | Yes | Kroger product UPC/id | |
| page | integer | No | One-based review page | |
| page_size | integer | No | Reviews per page, 1-100 |
{
"code": 200,
"msg": "OK",
"data": {
"upc": "0007120200411",
"page": 1,
"page_size": 16,
"average_rating": 4.64,
"total_count": 293,
"rating": {
"average": 4.64,
"count": 293,
"five_stars": 225,
"four_stars": 47,
"three_stars": 0,
"two_stars": 0,
"one_star": 7
},
"reviews": [
{
"id": "25562ac4-cf25-5ea3-a77c-461c4269540e",
"rating": 4,
"text": "I really enjoyed this product! The flavor is vibrant and tropical.",
"submitted_at": "2025-02-05T17:30:35.000Z",
"recommended": false,
"featured": false,
"ratings_only": false,
"helpful_vote_count": 0,
"not_helpful_vote_count": 0,
"photos": [
{
"url": "https://photos-us.bazaarvoice.com/photo/2/…",
"size": "medium"
}
]
}
]
}
}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 Kroger product's customer reviews -- review text, star rating, recommendation flag, helpful-vote counts, and customer photo URLs -- alongside the product's full star histogram. Customer display names are deliberately not returned.
{
"code": 200,
"msg": "OK",
"data": {
"upc": "0007120200411",
"page": 1,
"page_size": 16,
"average_rating": 4.64,
"total_count": 293,
"rating": {
"average": 4.64,
"count": 293,
"five_stars": 225,
"four_stars": 47,
"three_stars": 0,
"two_stars": 0,
"one_star": 7
},
"reviews": [
{
"id": "25562ac4-cf25-5ea3-a77c-461c4269540e",
"rating": 4,
"text": "I really enjoyed this product! The flavor is vibrant and tropical.",
"submitted_at": "2025-02-05T17:30:35.000Z",
"recommended": false,
"featured": false,
"ratings_only": false,
"helpful_vote_count": 0,
"not_helpful_vote_count": 0,
"photos": [
{
"url": "https://photos-us.bazaarvoice.com/photo/2/…",
"size": "medium"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/kroger/product/reviews?upc=<upc>" \
-H "x-api-key: $CRAWLORA_API_KEY"