Endpoint Playground
Test Crawlora's Burger King Locations 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/burgerking/locations?latitude=<latitude>&longitude=<longitude>" \
-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 | integer | No | Search radius in meters, 1-50000 (default 8000) | |
| max_results | integer | No | Maximum restaurants to return, 1-50 (default 20) | |
| market | string | No | RBI market to search, one of `US`, `CA` (default `US`) | |
| include_availability | boolean | No | Include each restaurant's live per-channel open/closed status (default false) | |
| delivery_only | boolean | No | Restrict to restaurants that actually deliver to this coordinate, a genuine delivery-zone match distinct from the has_delivery flag (default false) |
{
"code": 200,
"msg": "OK",
"data": {
"restaurants": [
{
"id": "restaurant_11502",
"store_id": "17871",
"name": "106 Fulton St NEW YORK, New York 10038-2708 - USA",
"address": "106 Fulton St",
"city": "NEW YORK",
"state": "NY",
"postal_code": "10038-2708",
"country": "USA",
"phone": "2125665132",
"latitude": 40.709934,
"longitude": -74.007328,
"operator": "106 Burger Corp",
"has_breakfast": true,
"has_delivery": true,
"has_drive_thru": true,
"has_playground": false,
"has_takeout": true,
"has_wifi": false,
"is_halal": false,
"is_dark_kitchen": false,
"hours": {
"dining_room": [
{
"day": "monday",
"open": "07:00:00",
"close": "20:00:00"
}
],
"delivery": [
{
"day": "monday",
"open": "07:30:00",
"close": "19:30:00"
}
]
},
"website_url": "https://www.bk.com/store-locator/store/restaurant_11502",
"availability": [
{
"mode": "eat_in",
"is_open_now": true,
"opens_at": "2026-09-03T07:00:00.000-04:00",
"closes_at": "2026-09-03T20:00:00.000-04:00",
"is_open_24_hours": false
}
]
}
],
"count": 1,
"total_count": 215,
"has_more": true,
"market": "US",
"source_url": "https://use1-prod-bk-gateway.rbictg.com/graphql",
"fetched_at": "2026-09-02T00: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 Burger King restaurants near a latitude/longitude. Each restaurant carries its internal id and numeric store id (the value /burgerking/menu and /burgerking/availability take), full address with coordinates, phone, the operating franchise group, amenity flags (breakfast, delivery, drive-thru, playground, takeout, wifi, halal, dark kitchen) and the full published week of hours for dining room, drive-thru, delivery and curbside separately. A coordinate with no nearby Burger King returns an empty list rather than an error. Setting include_availability=true additionally returns each restaurant's live per-channel open/closed status in one call, the same shape /burgerking/availability returns -- note that path is capped at a fixed page (up to 20 restaurants) rather than honoring max_results beyond that. Setting delivery_only=true instead restricts results to restaurants that Burger King's own delivery service actually considers deliverable to this coordinate -- a genuine delivery-zone match, not the same set as filtering has_delivery=true. include_availability and delivery_only cannot be combined.
{
"code": 200,
"msg": "OK",
"data": {
"restaurants": [
{
"id": "restaurant_11502",
"store_id": "17871",
"name": "106 Fulton St NEW YORK, New York 10038-2708 - USA",
"address": "106 Fulton St",
"city": "NEW YORK",
"state": "NY",
"postal_code": "10038-2708",
"country": "USA",
"phone": "2125665132",
"latitude": 40.709934,
"longitude": -74.007328,
"operator": "106 Burger Corp",
"has_breakfast": true,
"has_delivery": true,
"has_drive_thru": true,
"has_playground": false,
"has_takeout": true,
"has_wifi": false,
"is_halal": false,
"is_dark_kitchen": false,
"hours": {
"dining_room": [
{
"day": "monday",
"open": "07:00:00",
"close": "20:00:00"
}
],
"delivery": [
{
"day": "monday",
"open": "07:30:00",
"close": "19:30:00"
}
]
},
"website_url": "https://www.bk.com/store-locator/store/restaurant_11502",
"availability": [
{
"mode": "eat_in",
"is_open_now": true,
"opens_at": "2026-09-03T07:00:00.000-04:00",
"closes_at": "2026-09-03T20:00:00.000-04:00",
"is_open_24_hours": false
}
]
}
],
"count": 1,
"total_count": 215,
"has_more": true,
"market": "US",
"source_url": "https://use1-prod-bk-gateway.rbictg.com/graphql",
"fetched_at": "2026-09-02T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/burgerking/locations?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"