Endpoint Playground
Test Crawlora's Dunkin Nearby 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/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| radius | integer | No | Search radius in miles, 1-100 (default 25) | |
| limit | integer | No | Maximum stores to return, 1-50 (default 10) | |
| offset | integer | No | Result offset for paging through total_in_radius (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "307107",
"name": "Dunkin'",
"address": {
"line1": "250 Broadway",
"line2": "Park Pl Between Church & B'Way",
"city": "New York",
"region": "NY",
"postal_code": "10007",
"country": "US"
},
"phone_number": "+12127320406",
"latitude": 40.712975,
"longitude": -74.007829,
"distance_miles": 0.11,
"distance_kilometers": 0.18,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "05:30",
"closes": "18:00"
}
],
"features": [
"ON-THE-GO_MOBILE_ORDERING",
"FREE_WIFI",
"K-CUP_PODS"
],
"delivery_platforms": [
"doordash",
"grubhub",
"ubereats"
],
"google_place_id": "ChIJK0N8WshbwokRny3Z1vf-ZDs",
"timezone": "America/New_York",
"path": "en/ny/new-york/250-broadway/307107"
}
],
"count": 1,
"total_in_radius": 308,
"radius": 5,
"source_url": "https://cdn.yextapis.com/v2/accounts/me/entities/geosearch?api_key=...&v=20220101&location=40.7128%2C-74.006&radius=5&limit=1",
"fetched_at": "2026-09-01T09:12: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 Dunkin restaurants within a radius of a latitude/longitude, ordered nearest first, each with its distance in miles and kilometres, full address, phone, coordinates, the published week of hours, Dunkin's own amenity labels, which third-party delivery platforms are active, its Google Place id and timezone. This is the proximity search the directory browse cannot do -- GET /dunkin/directory walks a state to city to store tree, which requires knowing the administrative path in advance. Each result carries the `path` GET /dunkin/store takes, so the two chain directly. `total_in_radius` reports how many stores fall inside the radius overall, which is usually far more than one page; use `offset` to walk it. A coordinate with no Dunkin nearby returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "307107",
"name": "Dunkin'",
"address": {
"line1": "250 Broadway",
"line2": "Park Pl Between Church & B'Way",
"city": "New York",
"region": "NY",
"postal_code": "10007",
"country": "US"
},
"phone_number": "+12127320406",
"latitude": 40.712975,
"longitude": -74.007829,
"distance_miles": 0.11,
"distance_kilometers": 0.18,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "05:30",
"closes": "18:00"
}
],
"features": [
"ON-THE-GO_MOBILE_ORDERING",
"FREE_WIFI",
"K-CUP_PODS"
],
"delivery_platforms": [
"doordash",
"grubhub",
"ubereats"
],
"google_place_id": "ChIJK0N8WshbwokRny3Z1vf-ZDs",
"timezone": "America/New_York",
"path": "en/ny/new-york/250-broadway/307107"
}
],
"count": 1,
"total_in_radius": 308,
"radius": 5,
"source_url": "https://cdn.yextapis.com/v2/accounts/me/entities/geosearch?api_key=...&v=20220101&location=40.7128%2C-74.006&radius=5&limit=1",
"fetched_at": "2026-09-01T09:12:00Z"
}
}curl "https://api.crawlora.net/api/v1/dunkin/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"