TacoBell API endpoint
Use Crawlora's Taco Bell Store API to extract supported public TacoBell 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.
/taco-bell/storeReturns 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. 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 |
|---|---|---|---|---|---|
| store_number | string | Yes | Taco Bell store number, from /taco-bell/stores | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/taco-bell/store" \ -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": {
"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"
}
}Request schema
No body schema
Response schema
#/definitions/tacobell.storeDetailResponseDoc
| 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 | tacobell.StoreDetailResponse | No | ||||
| data.address | tacobell.StoreAddress | No | ||||
| data.address.city | string | No | Los Angeles | |||
| data.address.country | string | No | US | |||
| data.address.latitude | number | No | 34.048934 | |||
| data.address.line1 | string | No | 801 West 7th Street | |||
| data.address.line2 | string | No | ||||
| data.address.longitude | number | No | -118.258867 | |||
| data.address.postal_code | string | No | 90017 | |||
| data.address.region | string | No | US-CA | |||
| data.breakfast_available | boolean | No | true | BreakfastAvailable is the store-hours record's own flag, which can differ from capabilities.breakfast. | ||
| data.capabilities | tacobell.StoreCapabilities | No | ||||
| data.capabilities.breakfast | boolean | No | true | |||
| data.capabilities.delivery_enabled | boolean | No | true | |||
| data.capabilities.drive_thru | boolean | No | false | |||
| data.capabilities.live_mas_cafe | boolean | No | false | |||
| data.capabilities.mobile_enabled | boolean | No | true | |||
| data.capabilities.online | boolean | No | true | |||
| data.capabilities.open_late | boolean | No | false | |||
| data.capabilities.pickup_shelves | boolean | No | true | |||
| data.delivery | boolean | No | true | |||
| data.fetched_at | string | No | ||||
| data.geofencing_radius | integer | No | 3 | |||
| data.hours | array | No | Hours is the full published week, Monday-first. /taco-bell/stores carries only today's window. | |||
| data.hours[].closes | string | No | 4:00 AM | |||
| data.hours[].dayparts | array | No | ||||
| data.hours[].dayparts[].all_day | boolean | No | false | |||
| data.hours[].dayparts[].closed | boolean | No | false | |||
| data.hours[].dayparts[].ends | string | No | 4:00 AM | |||
| data.hours[].dayparts[].name | string | No | Balance Of Day | |||
| data.hours[].dayparts[].starts | string | No | 7:00 AM | |||
| data.hours[].opens | string | No | 7:00 AM | |||
| data.hours[].week_day | string | No | Monday | |||
| data.name | string | No | 040890 | |||
| data.online_available | boolean | No | true | |||
| data.phone_number | string | No | +16268423006 | |||
| data.pickup_status | string | No | Activated | PickupStatus is whether mobile pickup ordering is switched on for this restaurant. | ||
| data.source_url | string | No | ||||
| data.status | string | No | openNow | |||
| data.store_number | string | No | 040890 | |||
| data.timezone | string | No | America/Los_Angeles | Timezone is the IANA zone; TimezoneOffset is Taco Bell's own GMT rendering, kept because it reflects the store's current DST state. | ||
| data.timezone_offset | string | No | GMT-07:00 | |||
| data.today_hours | tacobell.DayHours | No | ||||
| data.today_hours.closes | string | No | 4:00 AM | |||
| data.today_hours.dayparts | array | No | ||||
| data.today_hours.dayparts[].all_day | boolean | No | false | |||
| data.today_hours.dayparts[].closed | boolean | No | false | |||
| data.today_hours.dayparts[].ends | string | No | 4:00 AM | |||
| data.today_hours.dayparts[].name | string | No | Balance Of Day | |||
| data.today_hours.dayparts[].starts | string | No | 7:00 AM | |||
| data.today_hours.opens | string | No | 7:00 AM | |||
| data.today_hours.week_day | string | No | Monday | |||
| 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/taco-bell/store" \
-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