Endpoint Playground
Test Crawlora's Raising Cane'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/raisingcanes/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. la. Omit for the root state index. |
{
"code": 200,
"msg": "OK",
"data": {
"path": "",
"children": [
{
"name": "Louisiana",
"path": "la",
"url": "https://locations.raisingcanes.com/la",
"store_count": 144,
"is_store": false
}
],
"count": 38,
"source_url": "https://locations.raisingcanes.com/",
"fetched_at": "2026-09-01T17:10: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 Raising Cane's store directory tree. Omit path for the root, which lists the US states Raising Cane's operates in; pass a child's path to descend (state to cities, city to stores). Each child carries its name, path, URL and how many stores sit under that branch. A child with is_store true is a store record rather than another directory level -- pass its path to GET /raisingcanes/store. This is a directory browse, not a proximity search: use GET /raisingcanes/nearby for a radius lookup.
{
"code": 200,
"msg": "OK",
"data": {
"path": "",
"children": [
{
"name": "Louisiana",
"path": "la",
"url": "https://locations.raisingcanes.com/la",
"store_count": 144,
"is_store": false
}
],
"count": 38,
"source_url": "https://locations.raisingcanes.com/",
"fetched_at": "2026-09-01T17:10:00Z"
}
}curl "https://api.crawlora.net/api/v1/raisingcanes/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"