Endpoint Playground
Test Crawlora's Taco Bell Store 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/store-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": "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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/taco-bell/store-menu?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"