Endpoint Playground
Test Crawlora's Taco Bell Stores 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/taco-bell/stores?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 | |
| page_size | integer | No | Stores per page, 1-50 (default 10) | |
| page | integer | No | 0-based page index (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_number": "040890",
"name": "040890",
"address": {
"line1": "801 West 7th Street",
"city": "Los Angeles",
"region": "US-CA",
"postal_code": "90017",
"country": "US",
"latitude": 34.048934,
"longitude": -118.258867
},
"phone_number": "+16268423006",
"distance_text": "0.90 Miles",
"status": "openNow",
"timezone": "America/Los_Angeles",
"timezone_offset": "GMT-07:00",
"delivery": true,
"online_available": true,
"capabilities": {
"breakfast": true,
"drive_thru": false,
"delivery_enabled": true,
"mobile_enabled": true,
"open_late": false,
"pickup_shelves": true,
"live_mas_cafe": false,
"online": true
},
"today_hours": {
"week_day": "Sunday",
"opens": "5:30 AM",
"closes": "4:00 AM"
}
}
],
"count": 10,
"source_url": "https://www.tacobell.com/tacobellwebservices/v2/tacobell/stores",
"fetched_at": "2026-08-31T16:40: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 Taco Bell US restaurants near a latitude/longitude, ordered by distance. Each store carries its store number, full postal address with coordinates, phone, distance, open status, timezone, today's published opening and closing hours, and Taco Bell's own per-store capability flags (breakfast, drive-thru, delivery, mobile ordering, open late, pickup shelves, Live Mas Cafe, online). A coordinate with no Taco Bell nearby returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_number": "040890",
"name": "040890",
"address": {
"line1": "801 West 7th Street",
"city": "Los Angeles",
"region": "US-CA",
"postal_code": "90017",
"country": "US",
"latitude": 34.048934,
"longitude": -118.258867
},
"phone_number": "+16268423006",
"distance_text": "0.90 Miles",
"status": "openNow",
"timezone": "America/Los_Angeles",
"timezone_offset": "GMT-07:00",
"delivery": true,
"online_available": true,
"capabilities": {
"breakfast": true,
"drive_thru": false,
"delivery_enabled": true,
"mobile_enabled": true,
"open_late": false,
"pickup_shelves": true,
"live_mas_cafe": false,
"online": true
},
"today_hours": {
"week_day": "Sunday",
"opens": "5:30 AM",
"closes": "4:00 AM"
}
}
],
"count": 10,
"source_url": "https://www.tacobell.com/tacobellwebservices/v2/tacobell/stores",
"fetched_at": "2026-08-31T16:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/taco-bell/stores?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"