Pizza Hut API endpoint
Use Crawlora's Pizza Hut Store API to extract supported public Pizza Hut 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.
/pizzahut/storeReturns one Pizza Hut restaurant's detail by its exact store number, from /pizzahut/stores, including its recurring open hours per order channel (carryout, delivery, dine-in, drive-thru, catering carryout) plus each channel's ordering constraints -- minimum/maximum order amount, whether tipping is offered, and accepted payment methods. A channel this restaurant does not offer at all is omitted from hours rather than reported as always-closed. 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 | Pizza Hut's store number, from /pizzahut/stores | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/pizzahut/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": "040937",
"name": "040937",
"address": {
"address1": "932 8th Ave",
"city": "New York",
"state": "NY",
"postal_code": "10019",
"country_code": "US",
"phone": "+19296452154",
"latitude": 40.7655,
"longitude": -73.9835
},
"accepting_online_orders": true,
"archived": false,
"timezone": "America/New_York",
"delivery_providers": [
{
"provider": "INTERNAL",
"enabled": true
}
],
"hours": [
{
"occasion": "CARRYOUT",
"enabled": true,
"min_order_amount": {
"amount_cents": 0,
"amount": 0,
"currency_code": "USD"
},
"max_order_amount": {
"amount_cents": 30000,
"amount": 300,
"currency_code": "USD"
},
"allow_tip": true,
"payment_types": [
{
"name": "CASH",
"type": "CASH"
},
{
"name": "CREDITCARD",
"type": "CARD"
}
],
"windows": [
{
"start_time": "11:00:00",
"duration": "16:00:00",
"days": [
6,
7,
1,
2,
3,
4,
5
],
"blackout": false
}
]
},
{
"occasion": "DELIVERY",
"enabled": true,
"min_order_amount": {
"amount_cents": 1099,
"amount": 10.99,
"currency_code": "USD"
},
"max_order_amount": {
"amount_cents": 30000,
"amount": 300,
"currency_code": "USD"
},
"allow_tip": true,
"payment_types": [
{
"name": "CASH",
"type": "CASH"
},
{
"name": "CREDITCARD",
"type": "CARD"
}
],
"windows": [
{
"start_time": "11:00:00",
"duration": "15:45:00",
"days": [
6,
7,
1,
3,
4,
5
],
"blackout": false
},
{
"start_time": "11:00:00",
"duration": "16:00:00",
"days": [
2
],
"blackout": false
}
]
}
],
"source_url": "https://www.pizzahut.com/v1/tarmor/ph_us/storefront/graphql",
"fetched_at": "2026-09-05T00:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/pizzahut.storeResponseDoc
| 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 | pizzahut.StoreResponse | No | ||||
| data.accepting_online_orders | boolean | No | true | |||
| data.address | pizzahut.Address | No | ||||
| data.address.address1 | string | No | 932 8th Ave | |||
| data.address.address2 | string | No | ||||
| data.address.city | string | No | New York | |||
| data.address.country_code | string | No | US | |||
| data.address.latitude | number | No | 40.7655 | |||
| data.address.longitude | number | No | -73.9835 | |||
| data.address.phone | string | No | +19296452154 | |||
| data.address.postal_code | string | No | 10019 | |||
| data.address.state | string | No | NY | |||
| data.archived | boolean | No | false | |||
| data.delivery_providers | array | No | ||||
| data.delivery_providers[].enabled | boolean | No | true | |||
| data.delivery_providers[].provider | string | No | INTERNAL | |||
| data.fetched_at | string | No | ||||
| data.hours | array | No | Hours is this restaurant's recurring open windows per order channel (occasion) -- CARRYOUT, DELIVERY, DINE_IN, DRIVE_THRU, CATERING_CARRYOUT -- plus each occasion's ordering constraints (minimum/maximum order amount, whether tipping is offered, accepted payment methods; see OccasionHours). A restaurant that does not offer a given occasion at all omits it from this list. Every real store sampled during this family's builds only offers CARRYOUT and DELIVERY; DINE_IN/DRIVE_THRU/CATERING_CARRYOUT are schema-valid but have not been observed live. | |||
| data.hours[].allow_tip | boolean | No | true | |||
| data.hours[].enabled | boolean | No | true | |||
| data.hours[].max_order_amount | pizzahut.Money | No | ||||
| data.hours[].max_order_amount.amount | number | No | 20.99 | |||
| data.hours[].max_order_amount.amount_cents | integer | No | 2099 | |||
| data.hours[].max_order_amount.currency_code | string | No | USD | |||
| data.hours[].min_order_amount | pizzahut.Money | No | ||||
| data.hours[].min_order_amount.amount | number | No | 20.99 | |||
| data.hours[].min_order_amount.amount_cents | integer | No | 2099 | |||
| data.hours[].min_order_amount.currency_code | string | No | USD | |||
| data.hours[].occasion | string | No | CARRYOUT | |||
| data.hours[].payment_types | array | No | ||||
| data.hours[].payment_types[].name | string | No | APPLEPAY | |||
| data.hours[].payment_types[].type | string | No | CARD | |||
| data.hours[].windows | array | No | ||||
| data.hours[].windows[].blackout | boolean | No | false | |||
| data.hours[].windows[].days | array | No | 1,2,3,4,5,6,7 | |||
| data.hours[].windows[].duration | string | No | 16:00:00 | |||
| data.hours[].windows[].start_time | string | No | 11:00:00 | |||
| data.name | string | No | 040937 | |||
| data.source_url | string | No | ||||
| data.store_number | string | No | 040937 | |||
| data.timezone | string | No | America/New_York | |||
| 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/pizzahut/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