Endpoint Playground
Test Crawlora's Domino's Store Locator 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-locator" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| address | string | No | Optional street address line | |
| city | string | No | City name (required together with state if postal_code is not given) | |
| state | string | No | Two-letter US state code (required together with city if postal_code is not given) | |
| postal_code | string | No | US ZIP code (can be used alone instead of city/state) | |
| service_method | string | No | One of: Delivery, Carryout. Default Delivery |
{
"code": 200,
"msg": "OK",
"data": {
"query": {
"street": "1600 PENNSYLVANIA AVE NW",
"city": "WASHINGTON",
"region": "DC",
"postal_code": "20500-0005",
"granularity": "CityRegionStreetRange"
},
"service_method": "Delivery",
"stores": [
{
"store_id": "4336",
"address": {
"street": "1300 L St Nw",
"city": "Washington",
"region": "DC",
"postal_code": "20005",
"latitude": 38.9036,
"longitude": -77.03
},
"phone": "202-639-8700",
"is_open": true,
"is_online_now": true,
"delivery_available": true,
"carryout_available": true,
"drive_up_carryout_available": true,
"contactless_delivery": "AVAILABLE",
"contactless_carryout": "DISABLED",
"service_hours": {
"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"
},
"estimated_wait_minutes": {
"Delivery": {
"min": 14,
"max": 29
},
"Carryout": {
"min": 8,
"max": 18
}
}
}
],
"count": 1,
"source_url": "https://order.dominos.com/power/store-locator?s=1600%20Pennsylvania%20Ave%20NW&c=Washington%2C%20DC%2020500&type=Delivery",
"fetched_at": "2026-09-01T16: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 Domino's US stores that can serve a location: store id, address with coordinates, phone, open/online status, per-service-method availability (delivery, carryout, drive-up carryout), contactless option status, Domino's own hours summary per service method, and estimated wait windows. At least one of postal_code, or both city and state, is required; address is an optional street line that improves precision when combined with city/state. The response's query field echoes how Domino's own address resolver actually interpreted the input, including its granularity (e.g. resolved to a specific street range vs. only a city/region).
{
"code": 200,
"msg": "OK",
"data": {
"query": {
"street": "1600 PENNSYLVANIA AVE NW",
"city": "WASHINGTON",
"region": "DC",
"postal_code": "20500-0005",
"granularity": "CityRegionStreetRange"
},
"service_method": "Delivery",
"stores": [
{
"store_id": "4336",
"address": {
"street": "1300 L St Nw",
"city": "Washington",
"region": "DC",
"postal_code": "20005",
"latitude": 38.9036,
"longitude": -77.03
},
"phone": "202-639-8700",
"is_open": true,
"is_online_now": true,
"delivery_available": true,
"carryout_available": true,
"drive_up_carryout_available": true,
"contactless_delivery": "AVAILABLE",
"contactless_carryout": "DISABLED",
"service_hours": {
"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"
},
"estimated_wait_minutes": {
"Delivery": {
"min": 14,
"max": 29
},
"Carryout": {
"min": 8,
"max": 18
}
}
}
],
"count": 1,
"source_url": "https://order.dominos.com/power/store-locator?s=1600%20Pennsylvania%20Ave%20NW&c=Washington%2C%20DC%2020500&type=Delivery",
"fetched_at": "2026-09-01T16:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/dominos/store-locator" \
-H "x-api-key: $CRAWLORA_API_KEY"