Endpoint Playground
Test Crawlora's Raising Cane's Promotions Index 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/promotions" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"heading": "Sweepstakes & Giveaways",
"promotions": [
{
"name": "C1066 - Lemonade with Law Enforcement – 06.18.2026",
"path": "c1066-lemonade-with-law-enforcement-06-18-2026"
}
]
},
{
"heading": "Other Promotions",
"promotions": [
{
"name": "RAISING CANE'S® C220 10 YEAR ANNIVERSARY"
}
]
}
],
"count": 53,
"source_url": "https://www.raisingcanes.com/page-data/promotions/page-data.json",
"fetched_at": "2026-09-02T17:45:15Z"
}
}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 promotions index: every current and past sweepstakes, giveaway, and other promotion the site links to, grouped under Raising Cane's own category headings (e.g. "Sweepstakes & Giveaways", "Lucky Promotions", "First Promotions"). Each entry's path chains into GET /raisingcanes/promotion for that promotion's full official-rules text. Some entries carry an empty path -- Raising Cane's own index links a since-expired promotion back to the homepage rather than removing the entry; treat an empty path as no longer resolvable rather than a bug.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"heading": "Sweepstakes & Giveaways",
"promotions": [
{
"name": "C1066 - Lemonade with Law Enforcement – 06.18.2026",
"path": "c1066-lemonade-with-law-enforcement-06-18-2026"
}
]
},
{
"heading": "Other Promotions",
"promotions": [
{
"name": "RAISING CANE'S® C220 10 YEAR ANNIVERSARY"
}
]
}
],
"count": 53,
"source_url": "https://www.raisingcanes.com/page-data/promotions/page-data.json",
"fetched_at": "2026-09-02T17:45:15Z"
}
}curl "https://api.crawlora.net/api/v1/raisingcanes/promotions" \
-H "x-api-key: $CRAWLORA_API_KEY"