Endpoint Playground
Test Crawlora's Wingstop 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/wingstop/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. Defaults to 20. |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "128",
"name": "Wingstop Houston Jones",
"slug": "wingstop-128-houston-tx-77065",
"address": {
"line1": "9804 Jones Rd Ste A",
"city": "Houston",
"region": "TX",
"postal_code": "77065",
"country": "USA"
},
"phone_number": "+1 (281) 477-9464",
"latitude": 29.9159405,
"longitude": -95.5838414,
"distance_miles": 0.42,
"hours": [
{
"day_of_week": "Monday",
"opens": "10:30",
"closes": "01:00"
}
],
"fulfillment_services": [
"delivery",
"carryout"
],
"location_status": "Active",
"timezone": "America/Chicago",
"amenities": [
"Coca Cola Freestyle"
]
}
],
"count": 20,
"radius_miles": 20,
"source_url": "https://ecomm.wingstop.com/location-worker?type=carryout",
"fetched_at": "2026-09-04T12: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 Wingstop stores within a radius of a coordinate, sorted nearest first, with enough detail per store (address, phone, general hours, fulfillment channels) that a follow-up GET /wingstop/store call is often unnecessary. Each result's slug can be passed directly as GET /wingstop/menu's path.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "128",
"name": "Wingstop Houston Jones",
"slug": "wingstop-128-houston-tx-77065",
"address": {
"line1": "9804 Jones Rd Ste A",
"city": "Houston",
"region": "TX",
"postal_code": "77065",
"country": "USA"
},
"phone_number": "+1 (281) 477-9464",
"latitude": 29.9159405,
"longitude": -95.5838414,
"distance_miles": 0.42,
"hours": [
{
"day_of_week": "Monday",
"opens": "10:30",
"closes": "01:00"
}
],
"fulfillment_services": [
"delivery",
"carryout"
],
"location_status": "Active",
"timezone": "America/Chicago",
"amenities": [
"Coca Cola Freestyle"
]
}
],
"count": 20,
"radius_miles": 20,
"source_url": "https://ecomm.wingstop.com/location-worker?type=carryout",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wingstop/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"