Endpoint Playground
Test Crawlora's Domino's 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/dominos/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Domino's store id, from /dominos/store-locator |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4336",
"name": "Downtown L St",
"address": {
"street": "1300 L St Nw",
"city": "Washington",
"region": "DC",
"postal_code": "20005",
"latitude": 38.9036,
"longitude": -77.03
},
"phone": "202-639-8700",
"status": "Open",
"is_open": true,
"is_online_now": false,
"delivery_available": true,
"carryout_available": true,
"drive_up_carryout_available": true,
"dine_in_available": false,
"contactless_delivery": "AVAILABLE",
"contactless_carryout": "DISABLED",
"hours": [
{
"week_day": "Monday",
"windows": [
{
"opens": "10:00",
"closes": "23:59"
}
]
}
],
"service_hours": {
"Delivery": [
{
"week_day": "Monday",
"windows": [
{
"opens": "10:00",
"closes": "23:59"
}
]
}
]
},
"service_hours_description": {
"Carryout": "Su-Th 10:00am-12:00am\nFr-Sa 10:00am-1:00am",
"Delivery": "Su-Th 10:00am-12:00am\nFr-Sa 10:00am-1:00am",
"DriveUpCarryout": "Su-Th 11:00am-11:00pm\nFr-Sa 12:00am-12:00am,11:00am-12:00am",
"DeliverToMe": "Su-Sa 10:30am-9:00pm"
},
"estimated_wait_minutes": {
"Delivery": {
"min": 19,
"max": 34
},
"Carryout": {
"min": 7,
"max": 17
}
},
"minimum_delivery_order_amount": 20,
"minimum_carryout_order_amount": 0,
"source_url": "https://order.dominos.com/power/store/4336/profile",
"fetched_at": "2026-09-02T09: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 one Domino's US store's full profile -- richer than /dominos/store-locator's per-store summary. Includes the store's complete weekly hours (general hours and each service method's own hours, Monday-first, with every open/close window per day), Domino's own free-text hours summary per service method, per-service-method estimated wait windows, open/online status, per-service-method order availability (delivery, carryout, drive-up carryout, dine-in), contactless option status, and delivery/carryout order minimums. Store ids come from GET /dominos/store-locator. An unknown store id returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "4336",
"name": "Downtown L St",
"address": {
"street": "1300 L St Nw",
"city": "Washington",
"region": "DC",
"postal_code": "20005",
"latitude": 38.9036,
"longitude": -77.03
},
"phone": "202-639-8700",
"status": "Open",
"is_open": true,
"is_online_now": false,
"delivery_available": true,
"carryout_available": true,
"drive_up_carryout_available": true,
"dine_in_available": false,
"contactless_delivery": "AVAILABLE",
"contactless_carryout": "DISABLED",
"hours": [
{
"week_day": "Monday",
"windows": [
{
"opens": "10:00",
"closes": "23:59"
}
]
}
],
"service_hours": {
"Delivery": [
{
"week_day": "Monday",
"windows": [
{
"opens": "10:00",
"closes": "23:59"
}
]
}
]
},
"service_hours_description": {
"Carryout": "Su-Th 10:00am-12:00am\nFr-Sa 10:00am-1:00am",
"Delivery": "Su-Th 10:00am-12:00am\nFr-Sa 10:00am-1:00am",
"DriveUpCarryout": "Su-Th 11:00am-11:00pm\nFr-Sa 12:00am-12:00am,11:00am-12:00am",
"DeliverToMe": "Su-Sa 10:30am-9:00pm"
},
"estimated_wait_minutes": {
"Delivery": {
"min": 19,
"max": 34
},
"Carryout": {
"min": 7,
"max": 17
}
},
"minimum_delivery_order_amount": 20,
"minimum_carryout_order_amount": 0,
"source_url": "https://order.dominos.com/power/store/4336/profile",
"fetched_at": "2026-09-02T09:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/dominos/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"