Endpoint Playground
Test Crawlora's Wendy's 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/wendys/nearby" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | No | Search center latitude. Required unless address is given. | |
| longitude | number | No | Search center longitude. Required unless address is given. | |
| address | string | No | Free-text city/state, zip code, or street address to search near. An alternative to latitude/longitude -- required unless both of those are given. | |
| radius | integer | No | Search radius in miles, 1-100, default 20 | |
| limit | integer | No | Maximum stores to return, 1-50, default 25 |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "12921",
"name": "WASHINGTON UNION STATION",
"address": {
"line1": "50 MASSACHUSETTS AVENUE NE",
"city": "WASHINGTON",
"region": "DC",
"postal_code": "20002",
"country": "US"
},
"phone_number": "2028380978",
"latitude": 38.897527,
"longitude": -77.006362,
"distance_miles": 1.30845,
"is_open": true,
"has_breakfast": true,
"has_carry_out": true,
"has_mobile_order": true,
"has_drive_thru": false,
"has_delivery": true,
"has_wifi": true,
"timezone": "US/Eastern",
"hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "07:30",
"closes": "01:00"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:30",
"closes": "01:00"
}
],
"breakfast_hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "07:30",
"closes": "10:30"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:30",
"closes": "10:30"
}
]
}
],
"count": 1,
"radius": 20,
"source_url": "https://api.app.prd.wendys.digital/web-client-gateway/LocationServices/rest/nearbyLocations?...",
"fetched_at": "2026-09-02T00: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 Wendy's stores within a radius of a search location, nearest first, via order.wendys.com's own restaurant-selector proximity search (the "Use Current Location" / "City, State, or Zipcode" flow at order.wendys.com's start-an-order screen) -- a materially richer, real-distance source than locations.wendys.com's classic-Yext locator (GET /wendys/directory, /wendys/store), which publishes no geosearch of its own. The search location is either a latitude/longitude pair or a free-text address query param (city/state, zip code, or full street address) that Wendy's own service geocodes server-side -- exactly one form is required; address takes priority if both are given. Each store carries its address, coordinates, phone, distance in miles, open/closed status, its published week of general and breakfast hours, and a few order-availability flags (breakfast, carry-out, mobile order, drive-thru, delivery, wifi) the ordering app itself uses to decide whether to offer the store for the current order type.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "12921",
"name": "WASHINGTON UNION STATION",
"address": {
"line1": "50 MASSACHUSETTS AVENUE NE",
"city": "WASHINGTON",
"region": "DC",
"postal_code": "20002",
"country": "US"
},
"phone_number": "2028380978",
"latitude": 38.897527,
"longitude": -77.006362,
"distance_miles": 1.30845,
"is_open": true,
"has_breakfast": true,
"has_carry_out": true,
"has_mobile_order": true,
"has_drive_thru": false,
"has_delivery": true,
"has_wifi": true,
"timezone": "US/Eastern",
"hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "07:30",
"closes": "01:00"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:30",
"closes": "01:00"
}
],
"breakfast_hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "07:30",
"closes": "10:30"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:30",
"closes": "10:30"
}
]
}
],
"count": 1,
"radius": 20,
"source_url": "https://api.app.prd.wendys.digital/web-client-gateway/LocationServices/rest/nearbyLocations?...",
"fetched_at": "2026-09-02T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/nearby" \
-H "x-api-key: $CRAWLORA_API_KEY"