Endpoint Playground
Test Crawlora's Raising Cane's Store 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/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /raisingcanes/directory child with is_store true |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "C10",
"name": "Raising Cane's Chicken Fingers",
"address": {
"line1": "625 Airline Hwy",
"city": "Gonzales",
"region": "LA",
"postal_code": "70737",
"country": "US"
},
"phone_number": "(225) 407-4134",
"latitude": 30.2371548,
"longitude": -90.9132179,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "09:00",
"closes": "00:00"
}
],
"amenities": [
"DRIVE_THRU",
"LATE_NIGHT",
"CURBSIDE_PICKUP"
],
"fulfillment_services": [
"IN_STORE_PICKUP",
"CURBSIDE_PICKUP"
],
"google_place_id": "ChIJAahOufq1JoYRVbPEgWTb0LY",
"path": "la/gonzales/625-airline-hwy",
"source_url": "https://locations.raisingcanes.com/la/gonzales/625-airline-hwy",
"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 Raising Cane's store: name, full postal address, phone, coordinates, its general weekly hours plus separately published dine-in and drive-thru hours, Raising Cane's own per-store amenity labels (e.g. DRIVE_THRU, CURBSIDE_PICKUP), which pickup/delivery services it offers, and its Google Place id. Store paths come from GET /raisingcanes/directory entries whose is_store is true. Passing a directory path here returns a 404 rather than a hollow record.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "C10",
"name": "Raising Cane's Chicken Fingers",
"address": {
"line1": "625 Airline Hwy",
"city": "Gonzales",
"region": "LA",
"postal_code": "70737",
"country": "US"
},
"phone_number": "(225) 407-4134",
"latitude": 30.2371548,
"longitude": -90.9132179,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "09:00",
"closes": "00:00"
}
],
"amenities": [
"DRIVE_THRU",
"LATE_NIGHT",
"CURBSIDE_PICKUP"
],
"fulfillment_services": [
"IN_STORE_PICKUP",
"CURBSIDE_PICKUP"
],
"google_place_id": "ChIJAahOufq1JoYRVbPEgWTb0LY",
"path": "la/gonzales/625-airline-hwy",
"source_url": "https://locations.raisingcanes.com/la/gonzales/625-airline-hwy",
"fetched_at": "2026-09-01T17:10:00Z"
}
}curl "https://api.crawlora.net/api/v1/raisingcanes/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"