Endpoint Playground
Test Crawlora's Burger King Product 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/product?store_id=<store_id>&item_id=<item_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 | |
| item_id | string | Yes | The item, combo, or picker id, from /burgerking/menu | |
| market | string | No | RBI market the store belongs to, one of `US`, `CA` (default `US`) |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "17871",
"id": "item_26",
"type": "item",
"name": "Whopper with Bacon",
"price": {
"delivery_cents": 909,
"delivery": 9.09,
"pickup_cents": 699,
"pickup": 6.99
},
"options": [
{
"id": "item_26$Modifier_2131",
"type": "modifier_group",
"name": "Bacon",
"options": [
{
"id": "item_26$Modifier_2131$modifierMultiplier_0-00-153847",
"type": "modifier",
"name": "No Bacon",
"price": {
"delivery_cents": 0,
"delivery": 0,
"pickup_cents": 0,
"pickup": 0
}
},
{
"id": "item_26$Modifier_2131$modifierMultiplier_1-50-153847",
"type": "modifier",
"name": "Extra Bacon",
"price": {
"delivery_cents": 150,
"delivery": 1.5,
"pickup_cents": 150,
"pickup": 1.5
}
}
]
}
],
"market": "US",
"source_url": "https://use1-prod-bk-gateway.rbictg.com/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 menu entry's full detail (name, description, price, image, nutrition, allergens) plus its customization tree, when it has one -- a combo's courses and their swappable entree/side/drink choices, a picker's size/variant choices, or a customizable item's ingredient toggle groups (e.g. "Bacon": no/regular/extra) and their price deltas. Options recurses through the full upstream structure, so a combo's entree choice carries its own ingredient toggles too, not just the combo's own top-level courses. A plain, non-customizable item returns an empty options list.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "17871",
"id": "item_26",
"type": "item",
"name": "Whopper with Bacon",
"price": {
"delivery_cents": 909,
"delivery": 9.09,
"pickup_cents": 699,
"pickup": 6.99
},
"options": [
{
"id": "item_26$Modifier_2131",
"type": "modifier_group",
"name": "Bacon",
"options": [
{
"id": "item_26$Modifier_2131$modifierMultiplier_0-00-153847",
"type": "modifier",
"name": "No Bacon",
"price": {
"delivery_cents": 0,
"delivery": 0,
"pickup_cents": 0,
"pickup": 0
}
},
{
"id": "item_26$Modifier_2131$modifierMultiplier_1-50-153847",
"type": "modifier",
"name": "Extra Bacon",
"price": {
"delivery_cents": 150,
"delivery": 1.5,
"pickup_cents": 150,
"pickup": 1.5
}
}
]
}
],
"market": "US",
"source_url": "https://use1-prod-bk-gateway.rbictg.com/graphql",
"fetched_at": "2026-09-03T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/burgerking/product?store_id=<store_id>&item_id=<item_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"