Endpoint Playground
Test Crawlora's Kroger products 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/products?upcs=<upcs>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| upcs | string | Yes | Comma-separated Kroger product UPCs, up to 50 | |
| location_id | string | No | Kroger store/location id that scopes price and stock |
{
"code": 200,
"msg": "OK",
"data": {
"location_id": "03500917",
"count": 1,
"products": [
{
"upc": "0007465324996",
"name": "Jack's Pull-Apart Supreme Pizza Sticks",
"brand": "Jack's",
"size": "8 Ounces",
"country_of_origin": "UNITED STATES",
"url": "https://www.kroger.com/p/-/0007465324996",
"image_url": "https://www.kroger.com/product/images/xlarge/front/0007465324996",
"categories": [
"Frozen"
],
"category": {
"department": "FROZEN GROCERY",
"commodity": "FROZEN HANDHELDS & SNACKS",
"sub_commodity": "POCKETS"
},
"alcohol": false,
"price": {
"amount": 2.19,
"currency": "USD",
"display": "$2.19",
"unit_price_text": "$0.27/oz",
"location_id": "03500917",
"seller_id": "KR001",
"seller_name": "Kroger"
},
"inventory": {
"location_id": "03500917",
"available": 9,
"stock_level": "HIGH"
},
"rating": {
"average": 4.35,
"count": 101,
"five_stars": 64,
"four_stars": 21,
"three_stars": 8,
"two_stars": 3,
"one_star": 5
},
"nutrition": {
"serving_size": "2 Sticks (113 g)",
"servings_per_container": "2.0",
"allergens": "Contains Wheat and Their Derivatives,Eggs and their derivates,Soybean",
"organic": false,
"non_gmo": false,
"gluten_free": false,
"kosher": false,
"facts": [
{
"name": "Sodium",
"value": "620",
"unit": "mg",
"daily_value": "27"
}
]
}
}
]
}
}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 full normalized detail for up to 50 Kroger products in one call, from Kroger's own product API. Carries materially more than kroger-product: a nutrition-facts panel with ingredients, allergens and dietary flags; store-specific price and stock level; a full star-rating histogram; the merchandising hierarchy; and every image perspective. location_id scopes price and stock to one store.
{
"code": 200,
"msg": "OK",
"data": {
"location_id": "03500917",
"count": 1,
"products": [
{
"upc": "0007465324996",
"name": "Jack's Pull-Apart Supreme Pizza Sticks",
"brand": "Jack's",
"size": "8 Ounces",
"country_of_origin": "UNITED STATES",
"url": "https://www.kroger.com/p/-/0007465324996",
"image_url": "https://www.kroger.com/product/images/xlarge/front/0007465324996",
"categories": [
"Frozen"
],
"category": {
"department": "FROZEN GROCERY",
"commodity": "FROZEN HANDHELDS & SNACKS",
"sub_commodity": "POCKETS"
},
"alcohol": false,
"price": {
"amount": 2.19,
"currency": "USD",
"display": "$2.19",
"unit_price_text": "$0.27/oz",
"location_id": "03500917",
"seller_id": "KR001",
"seller_name": "Kroger"
},
"inventory": {
"location_id": "03500917",
"available": 9,
"stock_level": "HIGH"
},
"rating": {
"average": 4.35,
"count": 101,
"five_stars": 64,
"four_stars": 21,
"three_stars": 8,
"two_stars": 3,
"one_star": 5
},
"nutrition": {
"serving_size": "2 Sticks (113 g)",
"servings_per_container": "2.0",
"allergens": "Contains Wheat and Their Derivatives,Eggs and their derivates,Soybean",
"organic": false,
"non_gmo": false,
"gluten_free": false,
"kosher": false,
"facts": [
{
"name": "Sodium",
"value": "620",
"unit": "mg",
"daily_value": "27"
}
]
}
}
]
}
}curl "https://api.crawlora.net/api/v1/kroger/products?upcs=<upcs>" \
-H "x-api-key: $CRAWLORA_API_KEY"