Endpoint Playground
Test Crawlora's KFC Nearby 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/nearby?latitude=<latitude>&longitude=<longitude>&occasion=DELIVERY" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| radius_miles | number | No | Search radius in miles, 0.1-100 (default 10) | |
| occasion | string | No | DELIVERY | Restrict to restaurants offering this order channel |
| max_results | integer | No | Maximum restaurants to return, 1-50 (default 20) |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_number": "Y052023",
"name": "KFC 1911 W Broadway St",
"address": {
"address1": "1911 W Broadway St",
"city": "Louisville",
"state": "KY",
"postal_code": "40203",
"country_code": "US",
"phone": "+15027755811",
"latitude": 38.2492,
"longitude": -85.784
},
"accepting_online_orders": false,
"archived": false,
"timezone": "America/New_York",
"distance_miles": 1.408
}
],
"count": 5,
"has_more": 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 KFC restaurants near a latitude/longitude, nearest first. A coordinate with no nearby KFC returns an empty list rather than an error. Each restaurant carries its store number, full address with coordinates, phone, whether it currently accepts online orders, its timezone, and its distance from the search point in miles. occasion restricts results to restaurants that offer a given order channel (e.g. only drive-thru locations).
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_number": "Y052023",
"name": "KFC 1911 W Broadway St",
"address": {
"address1": "1911 W Broadway St",
"city": "Louisville",
"state": "KY",
"postal_code": "40203",
"country_code": "US",
"phone": "+15027755811",
"latitude": 38.2492,
"longitude": -85.784
},
"accepting_online_orders": false,
"archived": false,
"timezone": "America/New_York",
"distance_miles": 1.408
}
],
"count": 5,
"has_more": 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/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"