Endpoint Playground
Test Crawlora's Zaxby'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/zaxbys/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | integer | Yes | zapi.zaxbys.com's own numeric store id, from a /zaxbys/nearby result |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": 299987,
"store_number": "75030",
"name": "Bronx - 3260 Boston Road",
"slug": "bronx-3260-boston-road",
"phone": "(929) 992-4390",
"address": {
"street": "3260 Boston Road",
"city": "Bronx",
"region": "NY",
"postal_code": "10469"
},
"latitude": 40.872505,
"longitude": -73.854276,
"available": true,
"currently_open": true,
"eta": "23MIN",
"services": {
"delivery": false,
"pickup": true,
"online_ordering": true,
"dine_in": true,
"dispatch": true,
"curbside": false,
"drive_thru": true,
"catering": false,
"free_wifi": false,
"open_late": false,
"milkshakes": true
},
"hours": [
{
"type": "business",
"ranges": [
{
"day": "Sat",
"opens_at": "2026-09-05 10:30",
"closes_at": "2026-09-06 03:00"
}
]
}
],
"order_url": "https://zaxbys.olo.com/menu/bronx-3260-boston-road/",
"source_url": "https://zapi.zaxbys.com/v1/stores/299987",
"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 one Zaxby's store's full detail by its store id: address, phone, coordinates, current open status, per-channel hours, and fulfillment/amenity flags. store_id comes from a GET /zaxbys/nearby result.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": 299987,
"store_number": "75030",
"name": "Bronx - 3260 Boston Road",
"slug": "bronx-3260-boston-road",
"phone": "(929) 992-4390",
"address": {
"street": "3260 Boston Road",
"city": "Bronx",
"region": "NY",
"postal_code": "10469"
},
"latitude": 40.872505,
"longitude": -73.854276,
"available": true,
"currently_open": true,
"eta": "23MIN",
"services": {
"delivery": false,
"pickup": true,
"online_ordering": true,
"dine_in": true,
"dispatch": true,
"curbside": false,
"drive_thru": true,
"catering": false,
"free_wifi": false,
"open_late": false,
"milkshakes": true
},
"hours": [
{
"type": "business",
"ranges": [
{
"day": "Sat",
"opens_at": "2026-09-05 10:30",
"closes_at": "2026-09-06 03:00"
}
]
}
],
"order_url": "https://zaxbys.olo.com/menu/bronx-3260-boston-road/",
"source_url": "https://zapi.zaxbys.com/v1/stores/299987",
"fetched_at": "2026-09-05T00:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/zaxbys/store?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"