Endpoint Playground
Test Crawlora's Chipotle Ingredients 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/chipotle/ingredients?channel=web®ion=US" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| channel | string | No | web | Ordering surface. One of web, web-mobile. Default web-mobile. |
| region | string | No | US | Country catalog. One of US, CA. Default US. |
{
"code": 200,
"msg": "OK",
"data": {
"channel": "web-mobile",
"region": "US",
"ingredients": [
{
"key": "avoc",
"title": "Avocado",
"facts_title": "FACT",
"facts_subtitle": "Avocadabra",
"facts_description": "Avocados are the guac to our chips...",
"sub_description": "We use only Hass avocados because they're the creamiest...",
"thumbnail_url": "https://www.chipotle.com/content/dam/chipotle/menu/ingredients/avocado/grid/avocado.png",
"background_image_url": "https://www.chipotle.com/content/dam/chipotle/menu/ingredients/avocado/panel/avocado-desktop-2x1.jpg",
"menu_item_ids": [
"CMG-1003",
"CMG-1015",
"CMG-5301"
]
}
],
"count": 53,
"ingredient_groups": [
{
"title": "proteins",
"items": [
{
"item_id": "CMG-1",
"ingredient_keys": [
"bkpep",
"chic",
"cchil",
"cumi",
"vine",
"garl",
"oreg",
"salt",
"soil",
"wate"
]
}
]
}
],
"source_url": "https://services.chipotle.com/menu-metadata/v1/menu-metadata/ingredients?channel=web-mobile®ion=US",
"fetched_at": "2026-09-01T10:20: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 Chipotle's raw-ingredient content pages -- sourcing story, marketing copy, imagery -- and the per-item recipe breakdown. ingredients[] has one entry per raw ingredient (Avocado, Yellow Onion, ...), each with its facts/sourcing copy and the menu_item_ids it appears in. ingredient_groups[] is the reverse view: one entry per recipe category (proteins, rice and beans, ...) listing each item's exact ingredient_keys, joinable against ingredients[].key for the human-readable name. Nothing else in this family exposes either ingredient content or recipe-level composition.
{
"code": 200,
"msg": "OK",
"data": {
"channel": "web-mobile",
"region": "US",
"ingredients": [
{
"key": "avoc",
"title": "Avocado",
"facts_title": "FACT",
"facts_subtitle": "Avocadabra",
"facts_description": "Avocados are the guac to our chips...",
"sub_description": "We use only Hass avocados because they're the creamiest...",
"thumbnail_url": "https://www.chipotle.com/content/dam/chipotle/menu/ingredients/avocado/grid/avocado.png",
"background_image_url": "https://www.chipotle.com/content/dam/chipotle/menu/ingredients/avocado/panel/avocado-desktop-2x1.jpg",
"menu_item_ids": [
"CMG-1003",
"CMG-1015",
"CMG-5301"
]
}
],
"count": 53,
"ingredient_groups": [
{
"title": "proteins",
"items": [
{
"item_id": "CMG-1",
"ingredient_keys": [
"bkpep",
"chic",
"cchil",
"cumi",
"vine",
"garl",
"oreg",
"salt",
"soil",
"wate"
]
}
]
}
],
"source_url": "https://services.chipotle.com/menu-metadata/v1/menu-metadata/ingredients?channel=web-mobile®ion=US",
"fetched_at": "2026-09-01T10:20:00Z"
}
}curl "https://api.crawlora.net/api/v1/chipotle/ingredients" \
-H "x-api-key: $CRAWLORA_API_KEY"