Endpoint Playground
Test Crawlora's Chipotle 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/chipotle/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"entrees": [
{
"item_id": "CMG-6",
"name": "Veggie Burrito",
"category": "Entree",
"type": "Burrito",
"pos_id": 4,
"primary_filling": "Veggie",
"available": true,
"delivery_eligible": true,
"max_quantity": 1,
"content_groups": [
{
"name": "BYORiceContentGroup",
"min_quantity": 0,
"max_quantity": 1
}
]
}
],
"sides": [],
"drinks": [],
"source_url": "https://services.chipotle.com/menuinnovation/v1/universalmenus/menurules",
"fetched_at": "2026-08-31T04: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 restaurant-independent menu catalog -- every item it sells nationally, split into entrees, sides and drinks, with each item's category, type, primary filling and full customization tree. Takes no parameters. Prices are deliberately omitted from this response: Chipotle prices per restaurant, so the upstream returns every price as zero here, and surfacing a field of zeros would read as "free" rather than "unpriced". Use GET /chipotle/restaurant/menu for real prices.
{
"code": 200,
"msg": "OK",
"data": {
"entrees": [
{
"item_id": "CMG-6",
"name": "Veggie Burrito",
"category": "Entree",
"type": "Burrito",
"pos_id": 4,
"primary_filling": "Veggie",
"available": true,
"delivery_eligible": true,
"max_quantity": 1,
"content_groups": [
{
"name": "BYORiceContentGroup",
"min_quantity": 0,
"max_quantity": 1
}
]
}
],
"sides": [],
"drinks": [],
"source_url": "https://services.chipotle.com/menuinnovation/v1/universalmenus/menurules",
"fetched_at": "2026-08-31T04:20:00Z"
}
}curl "https://api.crawlora.net/api/v1/chipotle/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"