Endpoint Playground
Test Crawlora's Kroger store 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/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Kroger store/location id |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "01600531",
"name": "Waterville",
"brand": "KROGER",
"phone": "(419) 878-1040",
"open_text": "Open Until 8 PM",
"address": {
"address_lines": [
"8730 Waterville Swanton Rd"
],
"city": "Waterville",
"state": "OH",
"postal_code": "43566",
"country": "US"
},
"location": {
"latitude": 41.509023,
"longitude": -83.75036
},
"hours": [
{
"days": "Sun",
"hours": "10:00 AM - 5:00 PM",
"is_today": false
},
{
"days": "Mon - Fri",
"hours": "8:00 AM - 8:00 PM",
"is_today": true
}
],
"break_hours": [
{
"days": "Sun - Sat",
"hours": "1:00 PM - 1:30 PM",
"is_today": true
}
],
"has_drive_thru": true
}
}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 Kroger store's public detail: postal address, geographic coordinates, phone number, displayed opening hours (including any daily break hours), and whether it has a drive-thru. store_id is the same store/location id kroger-products and kroger-suggest accept.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "01600531",
"name": "Waterville",
"brand": "KROGER",
"phone": "(419) 878-1040",
"open_text": "Open Until 8 PM",
"address": {
"address_lines": [
"8730 Waterville Swanton Rd"
],
"city": "Waterville",
"state": "OH",
"postal_code": "43566",
"country": "US"
},
"location": {
"latitude": 41.509023,
"longitude": -83.75036
},
"hours": [
{
"days": "Sun",
"hours": "10:00 AM - 5:00 PM",
"is_today": false
},
{
"days": "Mon - Fri",
"hours": "8:00 AM - 8:00 PM",
"is_today": true
}
],
"break_hours": [
{
"days": "Sun - Sat",
"hours": "1:00 PM - 1:30 PM",
"is_today": true
}
],
"has_drive_thru": true
}
}curl "https://api.crawlora.net/api/v1/kroger/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"