Endpoint Playground
Test Crawlora's Taco Bell Store 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/store?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_number | string | Yes | Taco Bell store number, from /taco-bell/stores |
{
"code": 200,
"msg": "OK",
"data": {
"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",
"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
},
"breakfast_available": true,
"hours": [
{
"week_day": "Monday",
"opens": "7:00 AM",
"closes": "4:00 AM",
"dayparts": [
{
"name": "Balance Of Day",
"starts": "7:00 AM",
"ends": "4:00 AM",
"all_day": false,
"closed": false
}
]
}
],
"today_hours": {
"week_day": "Monday",
"opens": "7:00 AM",
"closes": "4:00 AM"
},
"pickup_status": "Activated",
"geofencing_radius": 3,
"source_url": "https://www.tacobell.com/tacobellwebservices/v2/tacobell/stores/040890",
"fetched_at": "2026-09-01T09:12: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 Taco Bell US restaurant by store number: address and coordinates, phone, open status, timezone, delivery and online-ordering state, Taco Bell's per-store capability flags, mobile-pickup status and geofencing radius. Where GET /taco-bell/stores gives only today's window for each nearby restaurant, this returns the full published week, Monday-first, and each day's dayparts. Dayparts matter for ordering: Taco Bell's menu availability is daypart-scoped, so breakfast items and Balance Of Day items are orderable in different windows of the same day. Store numbers come from GET /taco-bell/stores.
{
"code": 200,
"msg": "OK",
"data": {
"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",
"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
},
"breakfast_available": true,
"hours": [
{
"week_day": "Monday",
"opens": "7:00 AM",
"closes": "4:00 AM",
"dayparts": [
{
"name": "Balance Of Day",
"starts": "7:00 AM",
"ends": "4:00 AM",
"all_day": false,
"closed": false
}
]
}
],
"today_hours": {
"week_day": "Monday",
"opens": "7:00 AM",
"closes": "4:00 AM"
},
"pickup_status": "Activated",
"geofencing_radius": 3,
"source_url": "https://www.tacobell.com/tacobellwebservices/v2/tacobell/stores/040890",
"fetched_at": "2026-09-01T09:12:00Z"
}
}curl "https://api.crawlora.net/api/v1/taco-bell/store?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"