TacoBell API endpoint
Use Crawlora's Taco Bell App Menu API to extract supported public TacoBell data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/taco-bell/app-menuReturns 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| store_number | string | Yes | Taco Bell store number, from /taco-bell/stores | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/taco-bell/app-menu" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
}Request schema
No body schema
Response schema
#/definitions/tacobell.appMenuResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | Code is the HTTP status code or a custom code used to indicate the result of the request @example 200 | |||
| data | tacobell.AppMenuResponse | No | ||||
| data.categories | array | No | ||||
| data.categories[].code | string | No | tacos | |||
| data.categories[].items | array | No | ||||
| data.categories[].items[].calories | integer | No | 771 | |||
| data.categories[].items[].choices | array | No | Choices is populated only when kind is "bundle". | |||
| data.categories[].items[].choices[].code | string | No | 22603_22902_1 | |||
| data.categories[].items[].choices[].default_product_codes | array | No | 22101 | |||
| data.categories[].items[].choices[].max_selections | integer | No | 1 | |||
| data.categories[].items[].choices[].min_selections | integer | No | 1 | |||
| data.categories[].items[].code | string | No | 22603 | |||
| data.categories[].items[].daypart_codes | array | No | BalanceOfDay | |||
| data.categories[].items[].description | string | No | ||||
| data.categories[].items[].image_url | string | No | ||||
| data.categories[].items[].kind | string | No | bundle | |||
| data.categories[].items[].name | string | No | 3 Crunchy Tacos Supreme Combo | |||
| data.categories[].items[].price | tacobell.Money | No | ||||
| data.categories[].items[].price.currency | string | No | USD | |||
| data.categories[].items[].price.formatted | string | No | $5.99 | Formatted is Taco Bell's own rendering, kept because it carries the upstream's rounding/symbol conventions. | ||
| data.categories[].items[].price.value | number | No | 5.99 | |||
| data.categories[].name | string | No | Tacos | |||
| data.category_count | integer | No | 17 | |||
| data.dayparts | array | No | ||||
| data.dayparts[].code | string | No | HappyHour | |||
| data.dayparts[].name | string | No | Happy Hour | |||
| data.fetched_at | string | No | ||||
| data.item_count | integer | No | 207 | |||
| data.source_url | string | No | ||||
| data.store_number | string | No | 034922 | |||
| msg | unknown | No | Msg is the message that describes the result of the request @example "Request successful" |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/taco-bell/app-menu" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms