Endpoint Playground
Test Crawlora's Chipotle Restaurants 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/restaurants?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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) |
{
"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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/chipotle/restaurants?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"