Endpoint Playground
Test Crawlora's KFC 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/kfc/store?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_number | string | Yes | KFC's alphanumeric store number, from /kfc/stores or /kfc/nearby |
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "I824001",
"name": "KFC 600 Terminal Drive",
"address": {
"address1": "600 Terminal Drive",
"address2": "Louisville International Airport - Pre Security",
"city": "Louisville",
"state": "KY",
"postal_code": "40209",
"country_code": "US",
"phone": "+15023633000",
"latitude": 38.1857,
"longitude": -85.7445
},
"accepting_online_orders": true,
"archived": false,
"timezone": "America/New_York",
"hours": [
{
"occasion": "CARRYOUT",
"enabled": true,
"windows": [
{
"start_time": "10:00:00",
"duration": "09:00:00",
"days": [
1,
2,
3,
4,
5,
6,
7
],
"blackout": false
}
]
},
{
"occasion": "DELIVERY",
"enabled": true,
"windows": [
{
"start_time": "10:00:00",
"duration": "09:00:00",
"days": [
1,
2,
3,
4,
5,
6,
7
],
"blackout": false
}
]
}
],
"source_url": "https://www.kfc.com/api/kfc_us/storefront/graphql",
"fetched_at": "2026-09-03T00: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 KFC restaurant's detail by its exact store number, from /kfc/stores or /kfc/nearby, including its recurring open hours per order channel (carryout, delivery, dine-in, drive-thru, catering carryout). A channel this restaurant does not offer at all is omitted from hours rather than reported as always-closed.
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "I824001",
"name": "KFC 600 Terminal Drive",
"address": {
"address1": "600 Terminal Drive",
"address2": "Louisville International Airport - Pre Security",
"city": "Louisville",
"state": "KY",
"postal_code": "40209",
"country_code": "US",
"phone": "+15023633000",
"latitude": 38.1857,
"longitude": -85.7445
},
"accepting_online_orders": true,
"archived": false,
"timezone": "America/New_York",
"hours": [
{
"occasion": "CARRYOUT",
"enabled": true,
"windows": [
{
"start_time": "10:00:00",
"duration": "09:00:00",
"days": [
1,
2,
3,
4,
5,
6,
7
],
"blackout": false
}
]
},
{
"occasion": "DELIVERY",
"enabled": true,
"windows": [
{
"start_time": "10:00:00",
"duration": "09:00:00",
"days": [
1,
2,
3,
4,
5,
6,
7
],
"blackout": false
}
]
}
],
"source_url": "https://www.kfc.com/api/kfc_us/storefront/graphql",
"fetched_at": "2026-09-03T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/kfc/store?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"