Endpoint Playground
Test Crawlora's Dunkin 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/dunkin/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /dunkin/directory child with is_store true |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "367018",
"name": "Dunkin'",
"address": {
"line1": "2473 Hackworth Rd",
"city": "Adamsville",
"region": "AL",
"postal_code": "35214",
"country": "US"
},
"latitude": 33.579207,
"longitude": -86.924303,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "21:00"
}
],
"delivery_platforms": [
"doordash",
"ubereats"
],
"path": "en/al/adamsville/2473-hackworth-rd/367018",
"source_url": "https://locations.dunkindonuts.com/en/al/adamsville/2473-hackworth-rd/367018",
"fetched_at": "2026-08-31T17:10: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 Dunkin store: name, full postal address, phone, coordinates, opening hours for every day of the week, Dunkin's own per-store feature labels, the Google Place id, and which third-party delivery platforms Dunkin marks active for that store. Store paths come from GET /dunkin/directory entries whose is_store is true. Passing a directory path here returns a 404 rather than a hollow record.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "367018",
"name": "Dunkin'",
"address": {
"line1": "2473 Hackworth Rd",
"city": "Adamsville",
"region": "AL",
"postal_code": "35214",
"country": "US"
},
"latitude": 33.579207,
"longitude": -86.924303,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "21:00"
}
],
"delivery_platforms": [
"doordash",
"ubereats"
],
"path": "en/al/adamsville/2473-hackworth-rd/367018",
"source_url": "https://locations.dunkindonuts.com/en/al/adamsville/2473-hackworth-rd/367018",
"fetched_at": "2026-08-31T17:10:00Z"
}
}curl "https://api.crawlora.net/api/v1/dunkin/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"