Endpoint Playground
Test Crawlora's Pizza Hut 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/pizzahut/store?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_number | string | Yes | Pizza Hut's store number, from /pizzahut/stores |
{
"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"
}
}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 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/pizzahut/store?store_number=<store_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"