Endpoint Playground
Test Crawlora's Five Guys 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/fiveguys/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | Optional. Directory path from a previous response's children[].path, e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"path": "il",
"name": "Illinois",
"children": [
{
"name": "Chicago",
"path": "il/chicago",
"url": "https://restaurants.fiveguys.com/il/chicago",
"location_count": 5,
"is_location": false
},
{
"name": "Peoria",
"path": "il/peoria",
"url": "https://restaurants.fiveguys.com/il/peoria",
"location_count": 1,
"is_location": false
}
],
"count": 2,
"source_url": "https://restaurants.fiveguys.com/il",
"fetched_at": "2026-09-05T04: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 Five Guys' US restaurant directory: the 50 states at the root, one state's cities when path is a state (e.g. `il`), and that city's restaurants when path is a city (e.g. `il/chicago`). Each child carries the path to pass back as this endpoint's `path`, and a `location_count` of how many restaurants sit under it. At the deepest level children are restaurants themselves (`is_location` true) -- pass their path to GET /fiveguys/store for the full profile. Use this to enumerate or browse locations; use GET /fiveguys/search or /fiveguys/nearby to find them by query or coordinate instead.
{
"code": 200,
"msg": "OK",
"data": {
"path": "il",
"name": "Illinois",
"children": [
{
"name": "Chicago",
"path": "il/chicago",
"url": "https://restaurants.fiveguys.com/il/chicago",
"location_count": 5,
"is_location": false
},
{
"name": "Peoria",
"path": "il/peoria",
"url": "https://restaurants.fiveguys.com/il/peoria",
"location_count": 1,
"is_location": false
}
],
"count": 2,
"source_url": "https://restaurants.fiveguys.com/il",
"fetched_at": "2026-09-05T04:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/fiveguys/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"