Endpoint Playground
Test Crawlora's Burger King Availability 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/availability?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`) | |
| forecast | boolean | No | Include a multi-day forward schedule per channel (default false) |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "17871",
"market": "US",
"available": true,
"local_time": "2026-09-02T11:55:19.322-04:00",
"timezone": "America/New_York",
"service_modes": [
{
"mode": "curbside",
"is_open_now": false,
"next_opens_at": "2026-09-03T08:30:00.000-04:00",
"next_closes_at": "2026-09-03T17:30:00.000-04:00",
"is_open_24_hours": false
},
{
"mode": "delivery",
"is_open_now": true,
"opens_at": "2026-09-02T07:30:00.000-04:00",
"closes_at": "2026-09-02T19:30:00.000-04:00",
"next_opens_at": "2026-09-03T07:30:00.000-04:00",
"next_closes_at": "2026-09-03T19:30:00.000-04:00",
"is_open_24_hours": false
},
{
"mode": "drive_thru",
"is_open_now": false,
"is_open_24_hours": false
},
{
"mode": "eat_in",
"is_open_now": true,
"opens_at": "2026-09-02T07:00:00.000-04:00",
"closes_at": "2026-09-02T20:00:00.000-04:00",
"next_opens_at": "2026-09-03T07:00:00.000-04:00",
"next_closes_at": "2026-09-03T20:00:00.000-04:00",
"is_open_24_hours": false
}
],
"forecast": [
{
"mode": "eat_in",
"slots": [
{
"date": "2026-09-02",
"opens_at": "2026-09-02 07:00:00",
"closes_at": "2026-09-02 20:00:00"
},
{
"date": "2026-12-25",
"is_closed": true
}
]
}
],
"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 live open/closed status per order channel (curbside, delivery, drive-thru, eat-in, mobile-order drive-thru, takeout), distinct from /burgerking/locations' published weekly schedule. Each channel carries whether it is taking orders right now, its current open window when open, and the following window's start/end -- a channel with no current or next window at all means this restaurant does not offer it, not merely that it is closed. Also returns the restaurant's own local time, timezone and an overall available flag. Setting forecast=true additionally returns a multi-day forward schedule per channel, including two catering-only channels not present in the current-status list.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "17871",
"market": "US",
"available": true,
"local_time": "2026-09-02T11:55:19.322-04:00",
"timezone": "America/New_York",
"service_modes": [
{
"mode": "curbside",
"is_open_now": false,
"next_opens_at": "2026-09-03T08:30:00.000-04:00",
"next_closes_at": "2026-09-03T17:30:00.000-04:00",
"is_open_24_hours": false
},
{
"mode": "delivery",
"is_open_now": true,
"opens_at": "2026-09-02T07:30:00.000-04:00",
"closes_at": "2026-09-02T19:30:00.000-04:00",
"next_opens_at": "2026-09-03T07:30:00.000-04:00",
"next_closes_at": "2026-09-03T19:30:00.000-04:00",
"is_open_24_hours": false
},
{
"mode": "drive_thru",
"is_open_now": false,
"is_open_24_hours": false
},
{
"mode": "eat_in",
"is_open_now": true,
"opens_at": "2026-09-02T07:00:00.000-04:00",
"closes_at": "2026-09-02T20:00:00.000-04:00",
"next_opens_at": "2026-09-03T07:00:00.000-04:00",
"next_closes_at": "2026-09-03T20:00:00.000-04:00",
"is_open_24_hours": false
}
],
"forecast": [
{
"mode": "eat_in",
"slots": [
{
"date": "2026-09-02",
"opens_at": "2026-09-02 07:00:00",
"closes_at": "2026-09-02 20:00:00"
},
{
"date": "2026-12-25",
"is_closed": true
}
]
}
],
"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/availability?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"