Endpoint Playground
Test Crawlora's Chipotle Restaurant 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?restaurant_number=<restaurant_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| restaurant_number | string | Yes | Chipotle's numeric restaurant id |
{
"code": 200,
"msg": "OK",
"data": {
"restaurant": {
"restaurant_number": 3982,
"name": "Bunker Hill",
"status": "OPEN",
"location_type": "RESTAURANT",
"open_date": "2022-12-30T00:00:00",
"address": {
"line1": "255 S Grand Ave Ste 102",
"city": "Los Angeles",
"state": "CA",
"postal_code": "90012-3035",
"country": "US"
}
},
"source_url": "https://services.chipotle.com/restaurant/v3/restaurant/3982",
"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 one Chipotle restaurant by its numeric restaurant number. Note this single-restaurant route returns a leaner record than GET /chipotle/restaurants: the proximity search accepts an embeds parameter that pulls in hours and capability flags, and no such parameter exists here, so those fields may be absent. If you need the full record for a known restaurant, call /chipotle/restaurants with a tight radius around it instead.
{
"code": 200,
"msg": "OK",
"data": {
"restaurant": {
"restaurant_number": 3982,
"name": "Bunker Hill",
"status": "OPEN",
"location_type": "RESTAURANT",
"open_date": "2022-12-30T00:00:00",
"address": {
"line1": "255 S Grand Ave Ste 102",
"city": "Los Angeles",
"state": "CA",
"postal_code": "90012-3035",
"country": "US"
}
},
"source_url": "https://services.chipotle.com/restaurant/v3/restaurant/3982",
"fetched_at": "2026-08-31T04:20:00Z"
}
}curl "https://api.crawlora.net/api/v1/chipotle/restaurant?restaurant_number=<restaurant_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"