Endpoint Playground
Test Crawlora's Chipotle 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/meals" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"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"
}
],
"count": 26,
"source_url": "https://services.chipotle.com/menuinnovation/v1/universalmeals/online",
"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 preset meal definitions -- the named combinations its ordering flow offers (Build-Your-Own Chicken and similar), each with an id, name, type and a description listing what the meal contains. Takes no parameters.
{
"code": 200,
"msg": "OK",
"data": {
"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"
}
],
"count": 26,
"source_url": "https://services.chipotle.com/menuinnovation/v1/universalmeals/online",
"fetched_at": "2026-08-31T04:20:00Z"
}
}curl "https://api.crawlora.net/api/v1/chipotle/meals" \
-H "x-api-key: $CRAWLORA_API_KEY"