Endpoint Playground
Test Crawlora's Raising Cane's Menu 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/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"sections": [
{
"anchor": "combos",
"headline": "Combos",
"items": [
{
"name": "The Box Combo®",
"description": "4 Chicken Fingers, Crinkle-Cut Fries, One Cane's Sauce®, Texas Toast, Coleslaw, Regular Fountain Drink/Tea (22 oz.) 1290 - 1720 Cal",
"image_url": "https://images.prismic.io/raisingcanes/box_combo_new.png?auto=compress%2Cformat&fit=max&w=512&h=512"
}
]
},
{
"anchor": "drinks",
"headline": "Drinks",
"items": [
{
"name": "Sweet Tea",
"description": "Freshly-brewed all day 230 Cal per 22 fl. oz.",
"image_url": "https://images.prismic.io/raisingcanes/sweet_tea.png"
}
]
}
],
"count": 23,
"source_url": "https://www.raisingcanes.com/page-data/menu/page-data.json",
"fetched_at": "2026-09-02T10: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 Raising Cane's full published menu: every section (Combos, Tailgates, Extras, Drinks) and every item, each with its name, Raising Cane's own item description (commonly ending in a calorie count or range), and image. This is a single fixed national menu page, not a per-store or per-region menu -- it takes no parameters. Raising Cane's does not publish price on this page; pricing lives behind the separate order.raisingcanes.com ordering flow, which needs a selected store and is out of scope here.
{
"code": 200,
"msg": "OK",
"data": {
"sections": [
{
"anchor": "combos",
"headline": "Combos",
"items": [
{
"name": "The Box Combo®",
"description": "4 Chicken Fingers, Crinkle-Cut Fries, One Cane's Sauce®, Texas Toast, Coleslaw, Regular Fountain Drink/Tea (22 oz.) 1290 - 1720 Cal",
"image_url": "https://images.prismic.io/raisingcanes/box_combo_new.png?auto=compress%2Cformat&fit=max&w=512&h=512"
}
]
},
{
"anchor": "drinks",
"headline": "Drinks",
"items": [
{
"name": "Sweet Tea",
"description": "Freshly-brewed all day 230 Cal per 22 fl. oz.",
"image_url": "https://images.prismic.io/raisingcanes/sweet_tea.png"
}
]
}
],
"count": 23,
"source_url": "https://www.raisingcanes.com/page-data/menu/page-data.json",
"fetched_at": "2026-09-02T10:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/raisingcanes/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"