Endpoint Playground
Test Crawlora's Taco Bell 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/menu?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category slug from /taco-bell/categories |
{
"code": 200,
"msg": "OK",
"data": {
"category": "tacos",
"items": [
{
"code": "24200",
"name": "Naked Chicken Chalupa",
"price": {
"value": 5.99,
"currency": "USD",
"formatted": "$5.99"
},
"calories": 430,
"product_type": "Standard",
"food_type": "Sellable_food",
"item_type": "Product",
"category": "specialties",
"image_url": "https://www.tacobell.com/images/24200_naked_chicken_chalupa",
"modifiable": true,
"has_meatless": false,
"available_in_store": true
}
],
"count": 16,
"source_url": "https://www.tacobell.com/food/tacos",
"fetched_at": "2026-08-31T16:40: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 the items in one Taco Bell US menu category, each with its product code, name, price, calorie count, product and food type, image, and flags for whether it is customizable, has a meatless variant, and is currently available in store. Category slugs come from GET /taco-bell/categories, and the endpoint accepts either the bare slug (`tacos`) or the full path form (`/food/tacos`). Taco Bell is one of the few brands publishing both price and calories in the same payload.
{
"code": 200,
"msg": "OK",
"data": {
"category": "tacos",
"items": [
{
"code": "24200",
"name": "Naked Chicken Chalupa",
"price": {
"value": 5.99,
"currency": "USD",
"formatted": "$5.99"
},
"calories": 430,
"product_type": "Standard",
"food_type": "Sellable_food",
"item_type": "Product",
"category": "specialties",
"image_url": "https://www.tacobell.com/images/24200_naked_chicken_chalupa",
"modifiable": true,
"has_meatless": false,
"available_in_store": true
}
],
"count": 16,
"source_url": "https://www.tacobell.com/food/tacos",
"fetched_at": "2026-08-31T16:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/taco-bell/menu?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"