Endpoint Playground
Test Crawlora's Taco Bell Nutrition 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/nutrition?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 | |
| include_ingredients | boolean | No | Include the full ingredient statement (default false -- it is long) |
{
"code": 200,
"msg": "OK",
"data": {
"category": "burritos",
"product": "burrito-supreme",
"label_name": "Burrito Supreme® - Beef",
"serving_size_unit": "Burrito",
"serving_weight_grams": 232.4657,
"nutrition": {
"calories": 392.9079,
"calories_from_fat": 118.0107,
"total_fat_g": 13.8961,
"saturated_fat_g": 6.4715,
"trans_fat_g": 0.2417,
"polyunsaturated_fat_g": 3.33,
"monounsaturated_fat_g": 3.6845,
"cholesterol_mg": 27.4909,
"sodium_mg": 1163.993,
"total_carbohydrate_g": 51.5623,
"dietary_fiber_g": 7.5198,
"sugars_g": 4.0006,
"added_sugars_g": 2.01,
"protein_g": 15.6483,
"vitamin_a": 11.4691,
"vitamin_c": 7.2259,
"vitamin_d_mcg": 1.6074,
"calcium_mg": 214.1077,
"iron_mg": 4.1016
},
"allergens": [
"Wheat",
"Soy",
"Milk"
],
"label_url": "https://www.nutritionix.com/label/popup/item/10197/166727",
"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 the complete nutrition-facts panel for one Taco Bell US menu item -- fats (total, saturated, trans, poly- and monounsaturated), cholesterol, sodium, potassium, carbohydrates, fiber, sugars including added sugars, protein, and the vitamin and mineral figures -- plus serving size and weight and the item's declared allergens. Values are unrounded as published, in the panel's own units: grams for fats, carbohydrates and protein, milligrams for cholesterol, sodium, potassium, calcium, iron and caffeine, and micrograms for vitamin D. This goes well beyond the calorie count on /taco-bell/menu and /taco-bell/product, which is all the menu pages themselves carry. The full component-by-component ingredient statement is available via include_ingredients; it runs to several kilobytes per item, so it is off by default.
{
"code": 200,
"msg": "OK",
"data": {
"category": "burritos",
"product": "burrito-supreme",
"label_name": "Burrito Supreme® - Beef",
"serving_size_unit": "Burrito",
"serving_weight_grams": 232.4657,
"nutrition": {
"calories": 392.9079,
"calories_from_fat": 118.0107,
"total_fat_g": 13.8961,
"saturated_fat_g": 6.4715,
"trans_fat_g": 0.2417,
"polyunsaturated_fat_g": 3.33,
"monounsaturated_fat_g": 3.6845,
"cholesterol_mg": 27.4909,
"sodium_mg": 1163.993,
"total_carbohydrate_g": 51.5623,
"dietary_fiber_g": 7.5198,
"sugars_g": 4.0006,
"added_sugars_g": 2.01,
"protein_g": 15.6483,
"vitamin_a": 11.4691,
"vitamin_c": 7.2259,
"vitamin_d_mcg": 1.6074,
"calcium_mg": 214.1077,
"iron_mg": 4.1016
},
"allergens": [
"Wheat",
"Soy",
"Milk"
],
"label_url": "https://www.nutritionix.com/label/popup/item/10197/166727",
"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/nutrition?category=<category>&product=<product>" \
-H "x-api-key: $CRAWLORA_API_KEY"