Endpoint Playground
Test Crawlora's Taco Bell Product 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/product?category=<category>&product=<product>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | Category slug from /taco-bell/categories | |
| product | string | Yes | Product slug, the last segment of a /food/{category}/{product} URL |
{
"code": 200,
"msg": "OK",
"data": {
"code": "22201",
"name": "Burrito Supreme®",
"description": "A warm flour tortilla filled with seasoned beef, refried beans, diced tomatoes & onions, reduced-fat sour cream and cheese.",
"category": "burritos",
"price": {
"value": 5.69,
"currency": "USD",
"formatted": "$5.69"
},
"calories": 390,
"accurate_calories": 392.9079,
"images": [
{
"url": "https://www.tacobell.com/images/22201_burrito_supreme_640x650.jpg",
"type": "PRIMARY",
"format": "640x650"
}
],
"customizations": [
{
"group": "addon_options",
"options": [
{
"code": "2111",
"name": "Pico De Gallo",
"calories": 0,
"accurate_calories": 4.0419,
"price": {
"value": 0.8,
"currency": "USD",
"formatted": "$0.80"
},
"image_url": "https://www.tacobell.com/images/2111_new_pico_de_gallo_269x269.jpg",
"available_in_store": true
}
],
"count": 12
}
],
"related": [
{
"code": "22963",
"name": "Grilled Cheese Burrito",
"reference_type": "CROSSELLING",
"calories": 690,
"url": "https://www.tacobell.com/food/burritos/grilled-cheese-burrito"
}
],
"nutrition_label_url": "https://www.nutritionix.com/label/popup/item/10197/166727",
"modifiable": true,
"has_meatless": false,
"available_in_store": true,
"vegetarian_friendly": false,
"url": "https://www.tacobell.com/food/burritos/burrito-supreme",
"source_url": "https://www.tacobell.com/food/burritos/burrito-supreme",
"fetched_at": "2026-08-31T09:12: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 menu item in full: product code, name, description, price, rounded and unrounded calorie counts, every published image rendition, and cross-sell/upsell references. The distinguishing part is `customizations` -- the option groups the item accepts (proteins, included ingredients, add-ons, sauces, shells, upgrades, and Supreme/Fresco add and remove sets), each option carrying its own calorie delta and add-on price. Calorie deltas can be negative, since the Fresco style replaces sauces. Slugs come from GET /taco-bell/menu, and both the bare slug and the full path form are accepted.
{
"code": 200,
"msg": "OK",
"data": {
"code": "22201",
"name": "Burrito Supreme®",
"description": "A warm flour tortilla filled with seasoned beef, refried beans, diced tomatoes & onions, reduced-fat sour cream and cheese.",
"category": "burritos",
"price": {
"value": 5.69,
"currency": "USD",
"formatted": "$5.69"
},
"calories": 390,
"accurate_calories": 392.9079,
"images": [
{
"url": "https://www.tacobell.com/images/22201_burrito_supreme_640x650.jpg",
"type": "PRIMARY",
"format": "640x650"
}
],
"customizations": [
{
"group": "addon_options",
"options": [
{
"code": "2111",
"name": "Pico De Gallo",
"calories": 0,
"accurate_calories": 4.0419,
"price": {
"value": 0.8,
"currency": "USD",
"formatted": "$0.80"
},
"image_url": "https://www.tacobell.com/images/2111_new_pico_de_gallo_269x269.jpg",
"available_in_store": true
}
],
"count": 12
}
],
"related": [
{
"code": "22963",
"name": "Grilled Cheese Burrito",
"reference_type": "CROSSELLING",
"calories": 690,
"url": "https://www.tacobell.com/food/burritos/grilled-cheese-burrito"
}
],
"nutrition_label_url": "https://www.nutritionix.com/label/popup/item/10197/166727",
"modifiable": true,
"has_meatless": false,
"available_in_store": true,
"vegetarian_friendly": false,
"url": "https://www.tacobell.com/food/burritos/burrito-supreme",
"source_url": "https://www.tacobell.com/food/burritos/burrito-supreme",
"fetched_at": "2026-08-31T09:12:00Z"
}
}curl "https://api.crawlora.net/api/v1/taco-bell/product?category=<category>&product=<product>" \
-H "x-api-key: $CRAWLORA_API_KEY"