TacoBell API endpoint
Use Crawlora's Taco Bell Store 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/store-menuReturns one Taco Bell US restaurant's entire menu -- every category and item in one call, each with its price, calories, product and food type, image, and whether it is currently carried and displayed at THIS store. Where GET /taco-bell/menu returns one category's items from the national default catalog, this is store-scoped: some items are absent or hidden at some restaurants, and this is the only endpoint that shows that per store. Also returns the store's current happy-hour discount window, published nowhere else in this family. The response can be cached at the edge for up to 24 hours, so treat it as a recent snapshot of what the store carries rather than a live per-second signal; for a store's serving-time windows (breakfast vs. Balance Of Day, etc.) use GET /taco-bell/store instead. 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/store-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": "040890",
"happier_hours": {
"starts_at": "2026-09-01T21:00:00Z",
"ends_at": "2026-09-02T00:00:00Z"
},
"categories": [
{
"code": "breakfast",
"name": "Breakfast",
"items": [
{
"code": "30179",
"name": "Cheesy Toasted Breakfast Burrito Bacon",
"price": {
"value": 1.99,
"currency": "USD",
"formatted": "$1.99"
},
"calories": 350,
"calories_text": "Cal",
"food_type": "Sellable_food",
"item_type": "Product",
"category": "breakfast",
"image_url": "https://www.tacobell.com/images/30179_cheesy_toasted_burrito_bacon_269x269.jpg",
"modifiable": true,
"has_meatless": false,
"available_in_store": true
}
]
}
],
"category_count": 17,
"item_count": 312,
"source_url": "https://www.tacobell.com/tacobellwebservices/v4/tacobell/products/menu/040890",
"fetched_at": "2026-09-01T18:42:39Z"
}
}Request schema
No body schema
Response schema
#/definitions/tacobell.storeMenuResponseDoc
| 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.StoreMenuResponse | No | ||||
| data.categories | array | No | ||||
| data.categories[].code | string | No | breakfast | |||
| data.categories[].items | array | No | ||||
| data.categories[].items[].available_in_store | boolean | No | true | |||
| data.categories[].items[].calories | integer | No | 430 | |||
| data.categories[].items[].calories_text | string | No | 430 Cal | |||
| data.categories[].items[].category | string | No | tacos | |||
| data.categories[].items[].code | string | No | CB-1234 | |||
| data.categories[].items[].food_type | string | No | ||||
| data.categories[].items[].has_meatless | boolean | No | false | HasMeatless marks an item with a meatless variant available. | ||
| data.categories[].items[].image_url | string | No | ||||
| data.categories[].items[].item_type | string | No | ||||
| data.categories[].items[].modifiable | boolean | No | true | Modifiable marks an item Taco Bell allows customizing. | ||
| data.categories[].items[].name | string | No | Naked Chicken Chalupa | |||
| 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[].items[].product_type | string | No | ||||
| data.categories[].name | string | No | Breakfast | |||
| data.category_count | integer | No | 17 | |||
| data.fetched_at | string | No | ||||
| data.happier_hours | unknown | No | HappierHours is this store's current happy-hour discount window, if one is in effect. Not published anywhere else in this family. | |||
| data.item_count | integer | No | 312 | |||
| data.source_url | string | No | ||||
| data.store_number | string | No | 040890 | |||
| 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/store-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