Endpoint Playground
Test Crawlora's Wingstop Menu 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/menu?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, or a /wingstop/store response's own path | |
| service_mode | string | No | One of: carryout, delivery. Defaults to carryout. |
{
"code": 200,
"msg": "OK",
"data": {
"store": {
"store_id": "128",
"name": "Wingstop Houston Jones",
"slug": "wingstop-128-houston-tx-77065",
"currency_code": "USD",
"tax_rate_percent": 8.25,
"lead_time_minutes": 10
},
"service_mode": "carryout",
"categories": [
{
"id": "cat-combos",
"name": "Wing Combos",
"slug": "wing-combos",
"image_url": "https://cdn.bfldr.com/.../menu-wing-combos.png",
"products": [
{
"id": "group-6-combo",
"name": "6 pc Wing Combo",
"slug": "6-wing-combo",
"description": "6 Boneless or Classic wings with up to 2 flavors, fries, 1 dip and a drink",
"image_url": "https://cdn.bfldr.com/.../6-combo.png",
"variants": [
{
"id": "item-6-boneless",
"name": "6 pc Boneless Combo",
"short_name": "Boneless",
"slug": "6-boneless-combo",
"price": 10.69,
"min_calories": 430,
"max_calories": 1330,
"is_popular": true,
"image_url": "https://cdn.bfldr.com/.../6-boneless.png"
},
{
"id": "item-6-classic",
"name": "6 pc Classic Combo",
"short_name": "Classic",
"slug": "6-classic-combo",
"price": 10.99,
"min_calories": 420,
"max_calories": 1240
}
]
}
]
}
],
"path": "tx/houston/wingstop-128-houston-tx-77065",
"source_url": "https://ecomm.wingstop.com/menu-worker?slug=wingstop-128-houston-tx-77065&serviceMode=carryout",
"fetched_at": "2026-09-03T19: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's full priced, categorized menu for carryout or delivery: every category, each listing's variants (a standalone item has one variant; a size/flavor family such as "6 pc Wing Combo" has one variant per size or preparation) with price, description and calorie range, plus store-level pricing context (currency, tax rate, prep lead time). Store paths come from GET /wingstop/directory entries whose is_store is true, or a GET /wingstop/store response's own path.
{
"code": 200,
"msg": "OK",
"data": {
"store": {
"store_id": "128",
"name": "Wingstop Houston Jones",
"slug": "wingstop-128-houston-tx-77065",
"currency_code": "USD",
"tax_rate_percent": 8.25,
"lead_time_minutes": 10
},
"service_mode": "carryout",
"categories": [
{
"id": "cat-combos",
"name": "Wing Combos",
"slug": "wing-combos",
"image_url": "https://cdn.bfldr.com/.../menu-wing-combos.png",
"products": [
{
"id": "group-6-combo",
"name": "6 pc Wing Combo",
"slug": "6-wing-combo",
"description": "6 Boneless or Classic wings with up to 2 flavors, fries, 1 dip and a drink",
"image_url": "https://cdn.bfldr.com/.../6-combo.png",
"variants": [
{
"id": "item-6-boneless",
"name": "6 pc Boneless Combo",
"short_name": "Boneless",
"slug": "6-boneless-combo",
"price": 10.69,
"min_calories": 430,
"max_calories": 1330,
"is_popular": true,
"image_url": "https://cdn.bfldr.com/.../6-boneless.png"
},
{
"id": "item-6-classic",
"name": "6 pc Classic Combo",
"short_name": "Classic",
"slug": "6-classic-combo",
"price": 10.99,
"min_calories": 420,
"max_calories": 1240
}
]
}
]
}
],
"path": "tx/houston/wingstop-128-houston-tx-77065",
"source_url": "https://ecomm.wingstop.com/menu-worker?slug=wingstop-128-houston-tx-77065&serviceMode=carryout",
"fetched_at": "2026-09-03T19:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wingstop/menu?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"