Endpoint Playground
Test Crawlora's Wingstop Flavors 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/flavors" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"flavors": [
{
"id": "4851a24e-b950-4b69-a1fc-917e6e4260de",
"name": "Carolina Gold BBQ",
"description": "Sweet, tangy Southern BBQ with rich, golden flavor inspired by the Carolinas.",
"image_url": "https://cdn.bfldr.com/NDQASMJ1/at/45t3ggh8m4x4bt5rk7pcxms/Q3_LTO_Icon_CarolinaGoldBBQ.svg",
"heat_scale": 1,
"is_dry": false,
"is_new": true,
"is_limited_time": true,
"is_active": true
},
{
"id": "...",
"name": "Lemon Pepper",
"description": "Zesty lemon. Cracked black pepper. This dry rub is the ultimate gateway flavor.",
"heat_scale": 1,
"is_dry": true,
"is_popular": true,
"is_active": true
}
],
"count": 16,
"source_url": "https://www.wingstop.com/resources/flavors.json",
"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's full sauce and dry-rub flavor catalog: name, description, image, a 0 (no heat) to 5 (hottest) heat scale, whether it's a dry rub or wet sauce, and new/popular/limited-time badges. Includes retired flavors (is_active false) still present in Wingstop's own feed.
{
"code": 200,
"msg": "OK",
"data": {
"flavors": [
{
"id": "4851a24e-b950-4b69-a1fc-917e6e4260de",
"name": "Carolina Gold BBQ",
"description": "Sweet, tangy Southern BBQ with rich, golden flavor inspired by the Carolinas.",
"image_url": "https://cdn.bfldr.com/NDQASMJ1/at/45t3ggh8m4x4bt5rk7pcxms/Q3_LTO_Icon_CarolinaGoldBBQ.svg",
"heat_scale": 1,
"is_dry": false,
"is_new": true,
"is_limited_time": true,
"is_active": true
},
{
"id": "...",
"name": "Lemon Pepper",
"description": "Zesty lemon. Cracked black pepper. This dry rub is the ultimate gateway flavor.",
"heat_scale": 1,
"is_dry": true,
"is_popular": true,
"is_active": true
}
],
"count": 16,
"source_url": "https://www.wingstop.com/resources/flavors.json",
"fetched_at": "2026-09-04T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wingstop/flavors" \
-H "x-api-key: $CRAWLORA_API_KEY"