Endpoint Playground
Test Crawlora's Wendy's Restaurant 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/restaurant?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | Numeric store id, e.g. from /wendys/nearby's stores[].store_id |
{
"code": 200,
"msg": "OK",
"data": {
"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,
"timezone": "US/Eastern",
"currency": "USD",
"is_open": true,
"active_day_part": "BREAKFAST",
"supports_carry_out": true,
"supports_dine_in": true,
"supports_drive_thru": false,
"has_breakfast": true,
"has_mobile_order": true,
"has_mobile_pay": true,
"has_wifi": true,
"has_gift_card": true,
"hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "08:00",
"closes": "19:00"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "20:00"
}
],
"breakfast_hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "08:00",
"closes": "10:00"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "10:00"
}
],
"source_url": "https://api.app.prd.wendys.digital/web-client-gateway/LocationServices/rest/restaurant/12921?...",
"fetched_at": "2026-09-04T00: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 restaurant's detail looked up by its numeric store id -- the same id GET /wendys/nearby's stores[].store_id returns -- via order.wendys.com's own restaurant-selector API, rather than a locations.wendys.com Yext locator path (see GET /wendys/store, which needs a directory path instead). Publishes richer per-store data than the Yext locator: whether each fulfillment mode (carry-out, dine-in, drive-thru) is physically offered at all (not just currently open, as GET /wendys/nearby's flags reflect), plus feature flags (wifi, mobile order/pay, Coke Freestyle, digital coupons, loyalty, gift cards) and the published week of general and breakfast hours.
{
"code": 200,
"msg": "OK",
"data": {
"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,
"timezone": "US/Eastern",
"currency": "USD",
"is_open": true,
"active_day_part": "BREAKFAST",
"supports_carry_out": true,
"supports_dine_in": true,
"supports_drive_thru": false,
"has_breakfast": true,
"has_mobile_order": true,
"has_mobile_pay": true,
"has_wifi": true,
"has_gift_card": true,
"hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "08:00",
"closes": "19:00"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "20:00"
}
],
"breakfast_hours": [
{
"day_of_week": "Sunday",
"closed": false,
"opens": "08:00",
"closes": "10:00"
},
{
"day_of_week": "Monday",
"closed": false,
"opens": "07:00",
"closes": "10:00"
}
],
"source_url": "https://api.app.prd.wendys.digital/web-client-gateway/LocationServices/rest/restaurant/12921?...",
"fetched_at": "2026-09-04T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/restaurant?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"