Endpoint Playground
Test Crawlora's Wendy's 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/wendys/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. united-states/oh. Omit for the root country index. |
{
"code": 200,
"msg": "OK",
"data": {
"path": "united-states",
"name": "All Wendy's Locations in United States",
"children": [
{
"name": "Ohio",
"path": "united-states/oh",
"url": "https://locations.wendys.com/united-states/oh",
"store_count": 388,
"is_store": false
}
],
"count": 51,
"source_url": "https://locations.wendys.com/united-states",
"fetched_at": "2026-09-01T00: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 Wendy's store directory tree. Omit path for the root, which lists Canada and the United States; pass a child's path to descend (country to states, state to cities, city to stores -- a single-store city links directly to its store page one level early). Each child carries its name, path, URL and, at the country/state/city levels, how many stores sit under that branch. A child with is_store true is a store page rather than another directory level -- pass its path to GET /wendys/store.
{
"code": 200,
"msg": "OK",
"data": {
"path": "united-states",
"name": "All Wendy's Locations in United States",
"children": [
{
"name": "Ohio",
"path": "united-states/oh",
"url": "https://locations.wendys.com/united-states/oh",
"store_count": 388,
"is_store": false
}
],
"count": 51,
"source_url": "https://locations.wendys.com/united-states",
"fetched_at": "2026-09-01T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/wendys/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"