Endpoint Playground
Test Crawlora's Taco Bell App 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/taco-bell/app-menu?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_number | string | Yes | Taco Bell store number, from /taco-bell/stores |
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "034922",
"dayparts": [
{
"code": "HappyHour",
"name": "Happy Hour"
},
{
"code": "BalanceOfDay",
"name": "Balance Of Day"
}
],
"categories": [
{
"code": "tacos",
"name": "Tacos",
"items": [
{
"code": "22902",
"name": "Crunchy Taco Supreme",
"kind": "product",
"description": "A crunchy corn shell filled with seasoned beef, lettuce, tomatoes, sour cream and cheddar cheese.",
"price": {
"value": 3.19,
"currency": "USD"
},
"calories": 190,
"image_url": "https://www.tacobell.com/images/22902_crunchy_taco_supreme.png",
"daypart_codes": [
"BalanceOfDay"
]
},
{
"code": "22603",
"name": "3 Crunchy Tacos Supreme Combo",
"kind": "bundle",
"description": "Includes three Crunchy Taco Supremes and a Large fountain drink.",
"price": {
"value": 11.99,
"currency": "USD"
},
"calories": 771,
"image_url": "https://www.tacobell.com/images/22603_crunchy_tacos_supreme_combo.png",
"daypart_codes": [
"BalanceOfDay"
],
"choices": [
{
"code": "22603_22902_1",
"min_selections": 1,
"max_selections": 1,
"default_product_codes": []
},
{
"code": "22603_22101_4",
"min_selections": 3,
"max_selections": 3,
"default_product_codes": [
"22101",
"22101",
"22101"
]
}
]
}
]
}
],
"category_count": 17,
"item_count": 207,
"source_url": "https://api.tacobell.com/app/v1/menu/034922",
"fetched_at": "2026-09-05T02:15: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 Taco Bell US restaurant's complete app-ordering catalog by store number: every category, every individually orderable product, AND every combo (kind "bundle") it carries. This is the only endpoint in this family that publishes combos at all -- each one resolved down to its full slot composition (choices[], each with min/max selections and the product codes it defaults to when not customized), not just a name and price. Also returns the store's named ordering windows (dayparts) and, per item, which dayparts it is orderable in. Comes from a different, credential-free backend than every other endpoint in this family -- no cookie, session, or account is required. Store numbers come from GET /taco-bell/stores.
{
"code": 200,
"msg": "OK",
"data": {
"store_number": "034922",
"dayparts": [
{
"code": "HappyHour",
"name": "Happy Hour"
},
{
"code": "BalanceOfDay",
"name": "Balance Of Day"
}
],
"categories": [
{
"code": "tacos",
"name": "Tacos",
"items": [
{
"code": "22902",
"name": "Crunchy Taco Supreme",
"kind": "product",
"description": "A crunchy corn shell filled with seasoned beef, lettuce, tomatoes, sour cream and cheddar cheese.",
"price": {
"value": 3.19,
"currency": "USD"
},
"calories": 190,
"image_url": "https://www.tacobell.com/images/22902_crunchy_taco_supreme.png",
"daypart_codes": [
"BalanceOfDay"
]
},
{
"code": "22603",
"name": "3 Crunchy Tacos Supreme Combo",
"kind": "bundle",
"description": "Includes three Crunchy Taco Supremes and a Large fountain drink.",
"price": {
"value": 11.99,
"currency": "USD"
},
"calories": 771,
"image_url": "https://www.tacobell.com/images/22603_crunchy_tacos_supreme_combo.png",
"daypart_codes": [
"BalanceOfDay"
],
"choices": [
{
"code": "22603_22902_1",
"min_selections": 1,
"max_selections": 1,
"default_product_codes": []
},
{
"code": "22603_22101_4",
"min_selections": 3,
"max_selections": 3,
"default_product_codes": [
"22101",
"22101",
"22101"
]
}
]
}
]
}
],
"category_count": 17,
"item_count": 207,
"source_url": "https://api.tacobell.com/app/v1/menu/034922",
"fetched_at": "2026-09-05T02:15:00Z"
}
}curl "https://api.crawlora.net/api/v1/taco-bell/app-menu?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"