Endpoint Playground
Test Crawlora's Wendy'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/wendys/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /wendys/directory child with is_store true |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "11456",
"name": "Wendy's 1833 W. STATE ST in Alliance, OH",
"address": {
"line1": "1833 W. State St.",
"city": "Alliance",
"region": "OH",
"postal_code": "44601-3538",
"country": "US"
},
"phone_number": "(330) 821-4338",
"latitude": 40.90233810995588,
"longitude": -81.1329160630703,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:30",
"closes": "22:00"
}
],
"drive_thru_hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:00",
"closes": "23:00"
}
],
"delivery_platforms": [
"doordash",
"grubhub"
],
"order_url": "https://order.wendys.com/us/en/select-restaurant?selectedRestaurant=11456",
"path": "united-states/oh/alliance/1833-w-state-st",
"source_url": "https://locations.wendys.com/united-states/oh/alliance/1833-w-state-st",
"fetched_at": "2026-09-01T00: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 one Wendy's store: name, full postal address, phone, coordinates, the published week of general restaurant hours and, separately, drive-thru hours (Wendy's often publishes these on different schedules), which third-party delivery platforms the store's own page links to, and the restaurant id and ordering URL used to start an order there. Store paths come from GET /wendys/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": "11456",
"name": "Wendy's 1833 W. STATE ST in Alliance, OH",
"address": {
"line1": "1833 W. State St.",
"city": "Alliance",
"region": "OH",
"postal_code": "44601-3538",
"country": "US"
},
"phone_number": "(330) 821-4338",
"latitude": 40.90233810995588,
"longitude": -81.1329160630703,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:30",
"closes": "22:00"
}
],
"drive_thru_hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "06:00",
"closes": "23:00"
}
],
"delivery_platforms": [
"doordash",
"grubhub"
],
"order_url": "https://order.wendys.com/us/en/select-restaurant?selectedRestaurant=11456",
"path": "united-states/oh/alliance/1833-w-state-st",
"source_url": "https://locations.wendys.com/united-states/oh/alliance/1833-w-state-st",
"fetched_at": "2026-09-01T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"