Endpoint Playground
Test Crawlora's Zaxby'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/zaxbys/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) |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": 175700,
"store_number": "71101",
"name": "Atlanta - 946 MLK JR DR NW",
"slug": "946-mlk-jr-dr-sw",
"phone": "(678) 732-0798",
"address": {
"street": "946 MLK JR DR NW",
"city": "Atlanta",
"region": "GA",
"postal_code": "30314"
},
"latitude": 33.7544113,
"longitude": -84.4182924,
"available": true,
"currently_open": true,
"eta": "11MIN",
"services": {
"delivery": false,
"pickup": true,
"online_ordering": true,
"dine_in": true,
"dispatch": true,
"curbside": true,
"drive_thru": true,
"catering": false,
"free_wifi": false,
"open_late": false,
"milkshakes": true
},
"hours": [
{
"type": "drivethru",
"ranges": [
{
"day": "Sat",
"opens_at": "2026-09-05 10:00",
"closes_at": "2026-09-06 03:00"
}
]
}
],
"order_url": "https://zaxbys.olo.com/menu/946-mlk-jr-dr-sw/",
"distance_miles": 1.78
}
],
"count": 1,
"radius_miles": 25,
"source_url": "https://zapi.zaxbys.com/v1/stores/near?latitude=33.749&longitude=-84.388&radius=25&limit=10",
"fetched_at": "2026-09-05T00: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 Zaxby's stores within a radius of a coordinate, nearest first: full address, phone, coordinates, current open status, per-channel hours (dine-in, drive-thru, carryout, pickup, delivery), and fulfillment/amenity flags. Each result's store_id pairs with GET /zaxbys/store for the same record on its own.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": 175700,
"store_number": "71101",
"name": "Atlanta - 946 MLK JR DR NW",
"slug": "946-mlk-jr-dr-sw",
"phone": "(678) 732-0798",
"address": {
"street": "946 MLK JR DR NW",
"city": "Atlanta",
"region": "GA",
"postal_code": "30314"
},
"latitude": 33.7544113,
"longitude": -84.4182924,
"available": true,
"currently_open": true,
"eta": "11MIN",
"services": {
"delivery": false,
"pickup": true,
"online_ordering": true,
"dine_in": true,
"dispatch": true,
"curbside": true,
"drive_thru": true,
"catering": false,
"free_wifi": false,
"open_late": false,
"milkshakes": true
},
"hours": [
{
"type": "drivethru",
"ranges": [
{
"day": "Sat",
"opens_at": "2026-09-05 10:00",
"closes_at": "2026-09-06 03:00"
}
]
}
],
"order_url": "https://zaxbys.olo.com/menu/946-mlk-jr-dr-sw/",
"distance_miles": 1.78
}
],
"count": 1,
"radius_miles": 25,
"source_url": "https://zapi.zaxbys.com/v1/stores/near?latitude=33.749&longitude=-84.388&radius=25&limit=10",
"fetched_at": "2026-09-05T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/zaxbys/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"