Endpoint Playground
Test Crawlora's Kroger product 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?upc=<upc>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| upc | string | Yes | Kroger product UPC/id (the last path segment of the product page URL) |
{
"code": 200,
"msg": "OK",
"data": {
"upc": "0064519402151",
"url": "https://www.kroger.com/p/-/0064519402151",
"title": "Bobbo SE3880240 Watermelon Gordo Birdhouse, 1",
"description": "Songbird Essentials adds color whimsy to any garden with our beautifully detailed wooden Bird Houses...",
"image_url": "https://www.kroger.com/product/images/medium/front/0064519402151",
"categories": [
"Pet",
"Bird Care"
],
"offer": {
"price": 35.02,
"currency": "USD",
"availability": "in_stock"
}
}
}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 normalized product detail for one Kroger item: title, description, image, brand, category trail, price/availability, and rating, sourced from the product page's own schema.org structured data.
{
"code": 200,
"msg": "OK",
"data": {
"upc": "0064519402151",
"url": "https://www.kroger.com/p/-/0064519402151",
"title": "Bobbo SE3880240 Watermelon Gordo Birdhouse, 1",
"description": "Songbird Essentials adds color whimsy to any garden with our beautifully detailed wooden Bird Houses...",
"image_url": "https://www.kroger.com/product/images/medium/front/0064519402151",
"categories": [
"Pet",
"Bird Care"
],
"offer": {
"price": 35.02,
"currency": "USD",
"availability": "in_stock"
}
}
}curl "https://api.crawlora.net/api/v1/kroger/product?upc=<upc>" \
-H "x-api-key: $CRAWLORA_API_KEY"