Chipotle API endpoint
Use Crawlora's Chipotle Restaurants 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/restaurantsReturns Chipotle restaurants near a latitude/longitude, ordered by distance. Each restaurant carries its number (the id every other Chipotle endpoint takes), name, status, full postal address with coordinates, published open/close hours per day, nearest cross streets, timezone, and capability flags (Chipotlane pickup, online ordering, catering, curbside pickup, dining room open, walk-up window). A coordinate with no Chipotle nearby returns an empty list rather than an error. 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 |
|---|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | ||
| longitude | number | Yes | Search center longitude | ||
| radius | integer | No | Search radius in meters, 1-80000 (default 8000) | ||
| page_size | integer | No | Restaurants per page, 1-50 (default 10) | ||
| page | integer | No | 0-based page index (default 0) | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/chipotle/restaurants?page=1" \ -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": {
"restaurants": [
{
"restaurant_number": 3982,
"name": "Bunker Hill",
"status": "OPEN",
"location_type": "RESTAURANT",
"distance_meters": 1135.9,
"address": {
"line1": "255 S Grand Ave Ste 102",
"city": "Los Angeles",
"state": "CA",
"postal_code": "90012-3035",
"country": "US",
"latitude": 34.053669,
"longitude": -118.251486
},
"timezone": "America/Los_Angeles",
"cross_streets": "Grand Ave. & 3rd st.",
"chipotlane": false,
"online_ordering": true,
"catering": true,
"curbside_pickup": false,
"dining_room_open": true,
"walkup_window": true,
"hours": [
{
"day_of_week": "Sunday",
"opens": "2026-08-30T10:30:00",
"closes": "2026-08-30T22:00:00"
}
]
}
],
"count": 1,
"source_url": "https://services.chipotle.com/restaurant/v3/restaurant",
"fetched_at": "2026-08-31T04:20:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/chipotle.restaurantsResponseDoc
| 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.RestaurantsResponse | No | ||||
| data.count | integer | No | 10 | |||
| data.fetched_at | string | No | ||||
| data.restaurants | array | No | ||||
| data.restaurants[].address | chipotle.RestaurantAddress | No | ||||
| data.restaurants[].address.city | string | No | Los Angeles | |||
| data.restaurants[].address.country | string | No | US | |||
| data.restaurants[].address.latitude | number | No | 34.0537 | |||
| data.restaurants[].address.line1 | string | No | 255 S Grand Ave Ste 102 | |||
| data.restaurants[].address.line2 | string | No | ||||
| data.restaurants[].address.longitude | number | No | -118.2506 | |||
| data.restaurants[].address.postal_code | string | No | 90012-3035 | |||
| data.restaurants[].address.state | string | No | CA | |||
| data.restaurants[].catering | boolean | No | true | |||
| data.restaurants[].chipotlane | boolean | No | false | Capability flags Chipotle publishes per restaurant. | ||
| data.restaurants[].cross_streets | string | No | Grand Ave. & 3rd st. | CrossStreets is the nearest intersection, when Chipotle publishes one. | ||
| data.restaurants[].curbside_pickup | boolean | No | false | |||
| data.restaurants[].dining_room_open | boolean | No | true | |||
| data.restaurants[].distance_meters | number | No | 1135.9 | DistanceMeters is present only on a proximity search, not on a single-restaurant lookup. | ||
| data.restaurants[].hours | array | No | Hours are the restaurant's published open/close windows. | |||
| data.restaurants[].hours[].closes | string | No | 2026-08-30T22:00:00 | |||
| data.restaurants[].hours[].day_of_week | string | No | Monday | |||
| data.restaurants[].hours[].opens | string | No | 2026-08-30T10:30:00 | |||
| data.restaurants[].location_type | string | No | RESTAURANT | |||
| data.restaurants[].name | string | No | Bunker Hill | |||
| data.restaurants[].online_ordering | boolean | No | true | |||
| data.restaurants[].open_date | string | No | 2022-12-30T00:00:00 | |||
| data.restaurants[].restaurant_number | integer | No | 3982 | |||
| data.restaurants[].status | string | No | OPEN | |||
| data.restaurants[].timezone | string | No | America/Los_Angeles | |||
| data.restaurants[].walkup_window | boolean | No | true | |||
| 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/restaurants?page=1" \
-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