Endpoint Playground
Test Crawlora's Wingstop Directory 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/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | Directory path from a previous response's children[].path, e.g. us/tx. Omit for the root. |
{
"code": 200,
"msg": "OK",
"data": {
"path": "us/tx/houston",
"name": "Houston",
"children": [
{
"name": "Wingstop",
"path": "tx/houston/wingstop-128-houston-tx-77065",
"url": "https://locations.wingstop.com/tx/houston/wingstop-128-houston-tx-77065",
"kind": "store",
"is_store": true
}
],
"count": 54,
"source_url": "https://locations.wingstop.com/us/tx/houston",
"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 level of Wingstop's store directory tree. Omit path for the root, which lists the single US country node; descend country to states, states to cities, cities to stores. Each child carries its name, path, url and kind (country, state, city, or store). A child with is_store true (kind store) is a store record rather than another directory level -- pass its path to GET /wingstop/store.
{
"code": 200,
"msg": "OK",
"data": {
"path": "us/tx/houston",
"name": "Houston",
"children": [
{
"name": "Wingstop",
"path": "tx/houston/wingstop-128-houston-tx-77065",
"url": "https://locations.wingstop.com/tx/houston/wingstop-128-houston-tx-77065",
"kind": "store",
"is_store": true
}
],
"count": 54,
"source_url": "https://locations.wingstop.com/us/tx/houston",
"fetched_at": "2026-09-03T12:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wingstop/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"