Endpoint Playground
Test Crawlora's Raising Cane's Nearby 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/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| radius | integer | No | Search radius in miles, 1-100 (default 25) | |
| limit | integer | No | Maximum stores to return, 1-50 (default 10) | |
| offset | integer | No | Result offset for paging through total_in_radius (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "C986",
"name": "Raising Cane's Chicken Fingers",
"address": {
"line1": "185 Broadway",
"city": "New York",
"region": "NY",
"postal_code": "10038",
"country": "US"
},
"latitude": 40.710412,
"longitude": -74.009937,
"distance_miles": 0.26,
"distance_kilometers": 0.42,
"timezone": "America/New_York",
"price_range": "ONE",
"fulfillment_services": [
"IN_STORE_PICKUP",
"DELIVERY_NOT_OFFERED"
],
"path": "ny/new-york/185-broadway"
}
],
"count": 1,
"total_in_radius": 69,
"radius": 5,
"source_url": "https://cdn.yextapis.com/v2/accounts/me/entities/geosearch?api_key=...&v=20220101&location=40.7128%2C-74.006&radius=5&limit=1",
"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 Raising Cane's restaurants within a radius of a latitude/longitude, ordered nearest first, each with its distance in miles and kilometres, address, coordinates, timezone, price tier and which pickup/delivery services it offers. This proximity result carries less detail than GET /raisingcanes/store (Raising Cane's own nearby-search key is not configured with hours or phone) -- each result's `path` chains straight into GET /raisingcanes/store for the full record. `total_in_radius` reports how many stores fall inside the radius overall, which is usually far more than one page; use `offset` to walk it. A coordinate with no Raising Cane's nearby returns an empty list rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "C986",
"name": "Raising Cane's Chicken Fingers",
"address": {
"line1": "185 Broadway",
"city": "New York",
"region": "NY",
"postal_code": "10038",
"country": "US"
},
"latitude": 40.710412,
"longitude": -74.009937,
"distance_miles": 0.26,
"distance_kilometers": 0.42,
"timezone": "America/New_York",
"price_range": "ONE",
"fulfillment_services": [
"IN_STORE_PICKUP",
"DELIVERY_NOT_OFFERED"
],
"path": "ny/new-york/185-broadway"
}
],
"count": 1,
"total_in_radius": 69,
"radius": 5,
"source_url": "https://cdn.yextapis.com/v2/accounts/me/entities/geosearch?api_key=...&v=20220101&location=40.7128%2C-74.006&radius=5&limit=1",
"fetched_at": "2026-09-01T17:10:00Z"
}
}curl "https://api.crawlora.net/api/v1/raisingcanes/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"