Endpoint Playground
Test Crawlora's Burger King Menu 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/menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Burger King's numeric store id, from /burgerking/locations | |
| market | string | No | RBI market the store belongs to, one of `US`, `CA` (default `US`) |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "17871",
"currency": "USD",
"categories": [
{
"id": "section_4832",
"name": "Breakfast Sandwiches",
"items": [
{
"id": "item_105531",
"type": "ITEM",
"name": "10 Pc. Chicken Nuggets with Super Saiyan Sauce",
"price": {
"delivery_cents": 479,
"delivery": 4.79,
"pickup_cents": 399,
"pickup": 3.99
},
"image_url": "https://use1-prod-bk-menu.rbictg.com/api/v1/menu/image/us/image-7d6dfca433b1f6a4ef97f91a7bc46b15d06e2bf1-1600x1600-png",
"nutrition": {
"calories": 520,
"fat_grams": 32,
"saturated_fat_grams": 6,
"cholesterol_mg": 80,
"sodium_mg": 910,
"carbohydrates_grams": 31,
"fiber_grams": 11,
"sugar_grams": 1,
"protein_grams": 26,
"weight_grams": 180
},
"allergens": [
"milk",
"fish",
"soy",
"wheat"
]
}
]
}
],
"item_count": 309,
"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 one restaurant's full menu grouped into categories (e.g. "Breakfast Sandwiches", "Flame Grilled Burgers"). Every entry is an item, a combo, or a picker (a variant-choice product such as "choose your drink size") and carries a delivery and pickup price -- these genuinely differ -- plus calories, detailed nutrition facts and flagged allergens when Burger King publishes them, and an image. Prices and availability reflect this specific restaurant, not a national default.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "17871",
"currency": "USD",
"categories": [
{
"id": "section_4832",
"name": "Breakfast Sandwiches",
"items": [
{
"id": "item_105531",
"type": "ITEM",
"name": "10 Pc. Chicken Nuggets with Super Saiyan Sauce",
"price": {
"delivery_cents": 479,
"delivery": 4.79,
"pickup_cents": 399,
"pickup": 3.99
},
"image_url": "https://use1-prod-bk-menu.rbictg.com/api/v1/menu/image/us/image-7d6dfca433b1f6a4ef97f91a7bc46b15d06e2bf1-1600x1600-png",
"nutrition": {
"calories": 520,
"fat_grams": 32,
"saturated_fat_grams": 6,
"cholesterol_mg": 80,
"sodium_mg": 910,
"carbohydrates_grams": 31,
"fiber_grams": 11,
"sugar_grams": 1,
"protein_grams": 26,
"weight_grams": 180
},
"allergens": [
"milk",
"fish",
"soy",
"wheat"
]
}
]
}
],
"item_count": 309,
"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/menu?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"