Endpoint Playground
Test Crawlora's Chipotle Restaurant Meals 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/restaurant/meals?restaurant_number=<restaurant_number>&meal_type=BuildYourOwn" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| restaurant_number | string | Yes | Chipotle's numeric restaurant id, from /chipotle/restaurants | |
| meal_type | string | No | BuildYourOwn | Filter to one meal family. One of BuildYourOwn, HighProtein, Influencer. |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_number": 3982,
"meals": [
{
"meal_id": "e4200067-da42-490c-81f1-37d26ddd9722",
"name": "Build-Your-Own Chicken",
"type": "BuildYourOwn",
"description": "Chicken, White Rice, Black Beans, Cheese, Romaine Lettuce, Fresh Tomato Salsa, Tomatillo-Red Chili Salsa, Sour Cream, Guacamole, 1 Large Chips, and 10 Soft Flour Tortillas",
"pricing": {
"price": 58,
"delivery_price": 75
},
"calories": "520 - 1220",
"dietary_tags": [
"Serves 4-6 people"
],
"entree_name": "Build-Your-Own Chicken",
"entree_item_id": "CMG-5374",
"entree_available": true,
"components": [
{
"item_id": "CMG-5375",
"name": "White Rice",
"quantity": 1,
"available": true
}
],
"images": [
{
"category": "WEB",
"url": "https://chipotlestrg-cdn.chipotle.com/assets/menuinnovation/pcms/e4200067-da42-490c-81f1-37d26ddd9722/2025_Chicken_Build_Web_1080x720.png"
}
],
"marketing_copy": "BuildYourOwn",
"sort_order": 1
}
],
"count": 21,
"source_url": "https://services.chipotle.com/menuinnovation/v1/restaurants/3982/onlinemeals",
"fetched_at": "2026-09-01T09: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 preset meals one Chipotle restaurant sells -- group Build-Your-Own packs, the High Protein line and limited-time Influencer meals -- each with its dine-in and delivery price at that restaurant, calorie label, dietary and macro tags, the components that make it up, merchandising tags and images. Prices are genuinely restaurant-specific: the same Build-Your-Own Chicken pack is priced differently from one location to another, so this is the endpoint to use for real pricing rather than /chipotle/meals, which lists the national meal definitions with no prices at all. Calorie labels are a range for build-your-own meals and a single figure for fixed ones, so they are returned as strings. Restaurant numbers come from GET /chipotle/restaurants.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant_number": 3982,
"meals": [
{
"meal_id": "e4200067-da42-490c-81f1-37d26ddd9722",
"name": "Build-Your-Own Chicken",
"type": "BuildYourOwn",
"description": "Chicken, White Rice, Black Beans, Cheese, Romaine Lettuce, Fresh Tomato Salsa, Tomatillo-Red Chili Salsa, Sour Cream, Guacamole, 1 Large Chips, and 10 Soft Flour Tortillas",
"pricing": {
"price": 58,
"delivery_price": 75
},
"calories": "520 - 1220",
"dietary_tags": [
"Serves 4-6 people"
],
"entree_name": "Build-Your-Own Chicken",
"entree_item_id": "CMG-5374",
"entree_available": true,
"components": [
{
"item_id": "CMG-5375",
"name": "White Rice",
"quantity": 1,
"available": true
}
],
"images": [
{
"category": "WEB",
"url": "https://chipotlestrg-cdn.chipotle.com/assets/menuinnovation/pcms/e4200067-da42-490c-81f1-37d26ddd9722/2025_Chicken_Build_Web_1080x720.png"
}
],
"marketing_copy": "BuildYourOwn",
"sort_order": 1
}
],
"count": 21,
"source_url": "https://services.chipotle.com/menuinnovation/v1/restaurants/3982/onlinemeals",
"fetched_at": "2026-09-01T09:12:00Z"
}
}curl "https://api.crawlora.net/api/v1/chipotle/restaurant/meals?restaurant_number=<restaurant_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"