Endpoint Playground
Test Crawlora's Wingstop 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/wingstop/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /wingstop/directory child with is_store true |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "128",
"name": "Wingstop",
"address": {
"line1": "9804 Jones Rd Ste A",
"city": "Houston",
"region": "TX",
"postal_code": "77065",
"country": "US"
},
"phone_number": "+12814779464",
"latitude": 29.9159405,
"longitude": -95.5838414,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "10:30",
"closes": "01:00"
}
],
"service_hours": {
"pickup": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "10:30",
"closes": "01:00"
}
],
"drive_through": [
{
"day_of_week": "Monday",
"closed": true
}
]
},
"fulfillment_services": [
"In-Store Pickup",
"Delivery",
"Same Day Delivery",
"No-Contact Delivery"
],
"location_status": "Active",
"price_range": "$",
"timezone": "America/Chicago",
"google_place_id": "ChIJDSWvQrjRQIYRam8j67O7iDo",
"path": "tx/houston/wingstop-128-houston-tx-77065",
"source_url": "https://locations.wingstop.com/tx/houston/wingstop-128-houston-tx-77065",
"fetched_at": "2026-09-03T12: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 Wingstop store: name, full postal address, phone, coordinates, its general weekly hours plus a per-channel breakdown (pickup, delivery, takeout, drive-through), which pickup/delivery services it offers, its operating status, price tier and Google Place id. Store paths come from GET /wingstop/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": "128",
"name": "Wingstop",
"address": {
"line1": "9804 Jones Rd Ste A",
"city": "Houston",
"region": "TX",
"postal_code": "77065",
"country": "US"
},
"phone_number": "+12814779464",
"latitude": 29.9159405,
"longitude": -95.5838414,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "10:30",
"closes": "01:00"
}
],
"service_hours": {
"pickup": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "10:30",
"closes": "01:00"
}
],
"drive_through": [
{
"day_of_week": "Monday",
"closed": true
}
]
},
"fulfillment_services": [
"In-Store Pickup",
"Delivery",
"Same Day Delivery",
"No-Contact Delivery"
],
"location_status": "Active",
"price_range": "$",
"timezone": "America/Chicago",
"google_place_id": "ChIJDSWvQrjRQIYRam8j67O7iDo",
"path": "tx/houston/wingstop-128-houston-tx-77065",
"source_url": "https://locations.wingstop.com/tx/houston/wingstop-128-houston-tx-77065",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wingstop/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"