Endpoint Playground
Test Crawlora's Raising Cane's Promotion Detail 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/promotion?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Promotion page slug from a /raisingcanes/promotions entry's path |
{
"code": 200,
"msg": "OK",
"data": {
"title": "Lemonade with Law Enforcement – 06.18.2026",
"description": [
"During the Lemonade with Law Enforcement Promotion at the Raising Cane's Restaurant located at 675 Sunland Park, El Paso, TX, 79912, on June 18, 2026, between 10:00 a.m. and 11:59 a.m. local time (the \"Promotion\") customers in attendance will receive one free a la carte Lemonade. While supplies last. Limit one per person. No purchase required."
],
"path": "c1066-lemonade-with-law-enforcement-06-18-2026",
"source_url": "https://www.raisingcanes.com/page-data/c1066-lemonade-with-law-enforcement-06-18-2026/page-data.json",
"fetched_at": "2026-09-02T17:45:16Z"
}
}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 Raising Cane's promotion's published official terms: title and official-rules text (eligibility, prize details, effective date), exactly as the promotion's own page publishes them, as separate paragraphs in publication order. Promotion paths come from GET /raisingcanes/promotions entries. A path with no promotion at it (expired, mistyped, or the empty path some index entries carry) returns a 404.
{
"code": 200,
"msg": "OK",
"data": {
"title": "Lemonade with Law Enforcement – 06.18.2026",
"description": [
"During the Lemonade with Law Enforcement Promotion at the Raising Cane's Restaurant located at 675 Sunland Park, El Paso, TX, 79912, on June 18, 2026, between 10:00 a.m. and 11:59 a.m. local time (the \"Promotion\") customers in attendance will receive one free a la carte Lemonade. While supplies last. Limit one per person. No purchase required."
],
"path": "c1066-lemonade-with-law-enforcement-06-18-2026",
"source_url": "https://www.raisingcanes.com/page-data/c1066-lemonade-with-law-enforcement-06-18-2026/page-data.json",
"fetched_at": "2026-09-02T17:45:16Z"
}
}curl "https://api.crawlora.net/api/v1/raisingcanes/promotion?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"