Chipotle API endpoint
Use Crawlora's Chipotle Restaurant Menu API to extract supported public Chipotle data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/chipotle/restaurant/menuReturns one restaurant's live online menu split into entrees, sides, drinks and non-food items. This is the only Chipotle endpoint that carries prices: every item has both a dine-in price and a delivery price, which genuinely differ. Each item also carries its full customization tree -- contents (the individual fillings, salsas and sides that make it up, each with their own price pair) and content_groups (how many picks each group allows). Prices are per-restaurant, so two restaurants will legitimately return different numbers for the same item. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| restaurant_number | string | Yes | Chipotle's numeric restaurant id | ||
| include_unavailable | boolean | No | Include items the restaurant currently has unavailable (default false) | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/chipotle/restaurant/menu?include_unavailable=true" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_number": 3982,
"entrees": [
{
"item_id": "CMG-5390",
"name": "2 Large Chips & 3 Large Sides",
"category": "Entree",
"type": "BYOChips",
"pos_id": 6023,
"primary_filling": "Large Chips (2)",
"pricing": {
"price": 19,
"delivery_price": 24.7
},
"available": true,
"delivery_eligible": true,
"max_quantity": 1,
"contents": [
{
"item_id": "CMG-5382",
"name": "Large Guacamole",
"type": "Included",
"pos_id": 6020,
"pricing": {
"price": 0,
"delivery_price": 0
},
"group_name": "BYOAlwaysIncludedContentGroup",
"delivery_eligible": true
}
],
"content_groups": [
{
"name": "BYOSalsaContentGroup",
"min_quantity": 1,
"max_quantity": 1
}
]
}
],
"sides": [],
"drinks": [],
"source_url": "https://services.chipotle.com/menuinnovation/v1/restaurants/3982/onlinemenu?channelId=web&includeUnavailableItems=false",
"fetched_at": "2026-08-31T04:20:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/chipotle.restaurantMenuResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | Code is the HTTP status code or a custom code used to indicate the result of the request @example 200 | |||
| data | chipotle.RestaurantMenuResponse | No | ||||
| data.drinks | array | No | ||||
| data.drinks[].available | boolean | No | true | |||
| data.drinks[].category | string | No | Entree | |||
| data.drinks[].content_groups | array | No | ContentGroups describe how many picks each component group allows. | |||
| data.drinks[].content_groups[].max_quantity | integer | No | 1 | |||
| data.drinks[].content_groups[].min_quantity | integer | No | 1 | |||
| data.drinks[].content_groups[].name | string | No | BYOSalsaContentGroup | |||
| data.drinks[].contents | array | No | Contents are the included/optional components of a built item. | |||
| data.drinks[].contents[].delivery_eligible | boolean | No | true | |||
| data.drinks[].contents[].group_name | string | No | BYOAlwaysIncluded | GroupName ties this content back to a ContentGroup entry. | ||
| data.drinks[].contents[].item_id | string | No | CMG-5382 | |||
| data.drinks[].contents[].name | string | No | Large Guacamole | |||
| data.drinks[].contents[].pos_id | integer | No | 6020 | |||
| data.drinks[].contents[].pricing | chipotle.Money | No | ||||
| data.drinks[].contents[].pricing.delivery_price | number | No | 13.9 | |||
| data.drinks[].contents[].pricing.price | number | No | 10.7 | |||
| data.drinks[].contents[].type | string | No | Included | |||
| data.drinks[].delivery_eligible | boolean | No | true | |||
| data.drinks[].item_id | string | No | CMG-6 | |||
| data.drinks[].max_quantity | integer | No | 1 | |||
| data.drinks[].name | string | No | Veggie Burrito | |||
| data.drinks[].pos_id | integer | No | 4 | PosID is Chipotle's point-of-sale id for the item. | ||
| data.drinks[].pricing | unknown | No | Pricing is absent on the national catalog, where Chipotle publishes no prices at all -- a zeroed price object there would read as "free" rather than "unpriced at this level". | |||
| data.drinks[].primary_filling | string | No | Veggie | PrimaryFilling is the protein/filling the item is built around. | ||
| data.drinks[].type | string | No | Burrito | |||
| data.entrees | array | No | ||||
| data.entrees[].available | boolean | No | true | |||
| data.entrees[].category | string | No | Entree | |||
| data.entrees[].content_groups | array | No | ContentGroups describe how many picks each component group allows. | |||
| data.entrees[].content_groups[].max_quantity | integer | No | 1 | |||
| data.entrees[].content_groups[].min_quantity | integer | No | 1 | |||
| data.entrees[].content_groups[].name | string | No | BYOSalsaContentGroup | |||
| data.entrees[].contents | array | No | Contents are the included/optional components of a built item. | |||
| data.entrees[].contents[].delivery_eligible | boolean | No | true | |||
| data.entrees[].contents[].group_name | string | No | BYOAlwaysIncluded | GroupName ties this content back to a ContentGroup entry. | ||
| data.entrees[].contents[].item_id | string | No | CMG-5382 | |||
| data.entrees[].contents[].name | string | No | Large Guacamole | |||
| data.entrees[].contents[].pos_id | integer | No | 6020 | |||
| data.entrees[].contents[].pricing | chipotle.Money | No | ||||
| data.entrees[].contents[].pricing.delivery_price | number | No | 13.9 | |||
| data.entrees[].contents[].pricing.price | number | No | 10.7 | |||
| data.entrees[].contents[].type | string | No | Included | |||
| data.entrees[].delivery_eligible | boolean | No | true | |||
| data.entrees[].item_id | string | No | CMG-6 | |||
| data.entrees[].max_quantity | integer | No | 1 | |||
| data.entrees[].name | string | No | Veggie Burrito | |||
| data.entrees[].pos_id | integer | No | 4 | PosID is Chipotle's point-of-sale id for the item. | ||
| data.entrees[].pricing | unknown | No | Pricing is absent on the national catalog, where Chipotle publishes no prices at all -- a zeroed price object there would read as "free" rather than "unpriced at this level". | |||
| data.entrees[].primary_filling | string | No | Veggie | PrimaryFilling is the protein/filling the item is built around. | ||
| data.entrees[].type | string | No | Burrito | |||
| data.fetched_at | string | No | ||||
| data.non_food_items | array | No | ||||
| data.non_food_items[].available | boolean | No | true | |||
| data.non_food_items[].category | string | No | Entree | |||
| data.non_food_items[].content_groups | array | No | ContentGroups describe how many picks each component group allows. | |||
| data.non_food_items[].content_groups[].max_quantity | integer | No | 1 | |||
| data.non_food_items[].content_groups[].min_quantity | integer | No | 1 | |||
| data.non_food_items[].content_groups[].name | string | No | BYOSalsaContentGroup | |||
| data.non_food_items[].contents | array | No | Contents are the included/optional components of a built item. | |||
| data.non_food_items[].contents[].delivery_eligible | boolean | No | true | |||
| data.non_food_items[].contents[].group_name | string | No | BYOAlwaysIncluded | GroupName ties this content back to a ContentGroup entry. | ||
| data.non_food_items[].contents[].item_id | string | No | CMG-5382 | |||
| data.non_food_items[].contents[].name | string | No | Large Guacamole | |||
| data.non_food_items[].contents[].pos_id | integer | No | 6020 | |||
| data.non_food_items[].contents[].pricing | chipotle.Money | No | ||||
| data.non_food_items[].contents[].pricing.delivery_price | number | No | 13.9 | |||
| data.non_food_items[].contents[].pricing.price | number | No | 10.7 | |||
| data.non_food_items[].contents[].type | string | No | Included | |||
| data.non_food_items[].delivery_eligible | boolean | No | true | |||
| data.non_food_items[].item_id | string | No | CMG-6 | |||
| data.non_food_items[].max_quantity | integer | No | 1 | |||
| data.non_food_items[].name | string | No | Veggie Burrito | |||
| data.non_food_items[].pos_id | integer | No | 4 | PosID is Chipotle's point-of-sale id for the item. | ||
| data.non_food_items[].pricing | unknown | No | Pricing is absent on the national catalog, where Chipotle publishes no prices at all -- a zeroed price object there would read as "free" rather than "unpriced at this level". | |||
| data.non_food_items[].primary_filling | string | No | Veggie | PrimaryFilling is the protein/filling the item is built around. | ||
| data.non_food_items[].type | string | No | Burrito | |||
| data.restaurant_number | integer | No | 3982 | |||
| data.sides | array | No | ||||
| data.sides[].available | boolean | No | true | |||
| data.sides[].category | string | No | Entree | |||
| data.sides[].content_groups | array | No | ContentGroups describe how many picks each component group allows. | |||
| data.sides[].content_groups[].max_quantity | integer | No | 1 | |||
| data.sides[].content_groups[].min_quantity | integer | No | 1 | |||
| data.sides[].content_groups[].name | string | No | BYOSalsaContentGroup | |||
| data.sides[].contents | array | No | Contents are the included/optional components of a built item. | |||
| data.sides[].contents[].delivery_eligible | boolean | No | true | |||
| data.sides[].contents[].group_name | string | No | BYOAlwaysIncluded | GroupName ties this content back to a ContentGroup entry. | ||
| data.sides[].contents[].item_id | string | No | CMG-5382 | |||
| data.sides[].contents[].name | string | No | Large Guacamole | |||
| data.sides[].contents[].pos_id | integer | No | 6020 | |||
| data.sides[].contents[].pricing | chipotle.Money | No | ||||
| data.sides[].contents[].pricing.delivery_price | number | No | 13.9 | |||
| data.sides[].contents[].pricing.price | number | No | 10.7 | |||
| data.sides[].contents[].type | string | No | Included | |||
| data.sides[].delivery_eligible | boolean | No | true | |||
| data.sides[].item_id | string | No | CMG-6 | |||
| data.sides[].max_quantity | integer | No | 1 | |||
| data.sides[].name | string | No | Veggie Burrito | |||
| data.sides[].pos_id | integer | No | 4 | PosID is Chipotle's point-of-sale id for the item. | ||
| data.sides[].pricing | unknown | No | Pricing is absent on the national catalog, where Chipotle publishes no prices at all -- a zeroed price object there would read as "free" rather than "unpriced at this level". | |||
| data.sides[].primary_filling | string | No | Veggie | PrimaryFilling is the protein/filling the item is built around. | ||
| data.sides[].type | string | No | Burrito | |||
| data.source_url | string | No | ||||
| msg | unknown | No | Msg is the message that describes the result of the request @example "Request successful" |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/chipotle/restaurant/menu?include_unavailable=true" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms