Endpoint Playground
Test Crawlora's Wingstop Delivery 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/delivery-store?address1=<address1>&city=<city>&state=<state>&postal_code=<postal_code>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| address1 | string | Yes | Delivery address line 1 | |
| city | string | Yes | Delivery address city | |
| state | string | Yes | Delivery address state (region) | |
| postal_code | string | Yes | Delivery address postal code | |
| country_code | string | No | Delivery address country code. Defaults to US. | |
| latitude | number | Yes | Delivery address latitude | |
| longitude | number | Yes | Delivery address longitude |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "wingstop-128-houston-tx-77065",
"location_status": "Active",
"drive_time_minutes": 17,
"source_url": "https://ecomm.wingstop.com/location-worker?type=delivery&version=3",
"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.
Given a delivery address, returns the single Wingstop store that will deliver there, plus its drive time. Returns 404 when no Wingstop store delivers to that address. The returned slug can be passed directly as GET /wingstop/menu's path with service_mode=delivery.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "wingstop-128-houston-tx-77065",
"location_status": "Active",
"drive_time_minutes": 17,
"source_url": "https://ecomm.wingstop.com/location-worker?type=delivery&version=3",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wingstop/delivery-store?address1=<address1>&city=<city>&state=<state>&postal_code=<postal_code>&latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"