Zaxbys API endpoint
Use Crawlora's Zaxby's Menu API to extract supported public Zaxbys data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/zaxbys/menuReturns Zaxby's full national reference menu: every category and product, with description, calories, image, and a full recursive customization tree (size/protein/sauce choices, each with its own real price delta). This is national reference data, not store-priced -- most items list cost 0 because real pricing is store-specific and requires a signed-in ordering session this endpoint does not have. Many items price entirely through a required customization selection rather than a base cost, so cost 0 on an item is expected, not a bug. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/zaxbys/menu" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 71357,
"name": "Fingerz™ & Wings Meals",
"image": "https://olo-images-live.imgix.net/dc/example.png",
"catering": false,
"slug": "fingerz-wings-meals",
"spotlight": true,
"products": [
{
"product_id": 113251777,
"title": "Lemon Pepper Wings & Things Meal",
"description": "5 Traditional Wings tossed in our zesty, tangy Lemon Pepper Dry Rub with Ranch, plus 3 Chicken Fingerz™ with Zax Sauce®.",
"calories": "1440 - 1770",
"cost": 0,
"customization_available": true,
"available_now": true,
"groups": [
{
"id": 4157392792,
"name": "Boneless or traditional?",
"options": [
{
"id": 17466794649,
"name": "Boneless",
"cost": 0,
"default": true,
"groups": [
{
"id": 4157392906,
"name": "Sauced or not?",
"options": [
{
"id": 17466794964,
"name": "Regular Fingerz",
"cost": 15,
"default": true
},
{
"id": 17466794963,
"name": "Sauced Fingerz",
"cost": 17,
"default": false
}
]
}
]
}
]
}
]
}
]
}
],
"category_count": 15,
"product_count": 106,
"source_url": "https://zapi.zaxbys.com/v1/menu/generic?includePrimaryModifiers=true",
"fetched_at": "2026-09-05T00:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/zaxbys.menuResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | Code is the HTTP status code or a custom code used to indicate the result of the request @example 200 | |||
| data | zaxbys.MenuResponse | No | ||||
| data.categories | array | No | ||||
| data.categories[].catering | boolean | No | Catering marks a catering-only section (larger platters/boxed lunches), separate from the everyday menu. | |||
| data.categories[].id | integer | No | ||||
| data.categories[].image | string | No | ||||
| data.categories[].name | string | No | Fingerz™ & Wings Meals | |||
| data.categories[].products | array | No | ||||
| data.categories[].products[].available_now | boolean | No | AvailableNow reflects the upstream's own current-availability flag (e.g. a limited-time item outside its active window is excluded here, not filtered out of the response -- callers can decide what to do with a not-currently-available item). | |||
| data.categories[].products[].badges | array | No | ||||
| data.categories[].products[].calories | string | No | 1440 - 1770 | |||
| data.categories[].products[].cost | number | No | 0 | |||
| data.categories[].products[].customization_available | boolean | No | ||||
| data.categories[].products[].description | string | No | ||||
| data.categories[].products[].groups | array | No | ||||
| data.categories[].products[].groups[].id | integer | No | ||||
| data.categories[].products[].groups[].name | string | No | Boneless or traditional? | |||
| data.categories[].products[].groups[].options | array | No | ||||
| data.categories[].products[].groups[].options[].cost | number | No | 17 | |||
| data.categories[].products[].groups[].options[].default | boolean | No | ||||
| data.categories[].products[].groups[].options[].groups | array | No | ||||
| data.categories[].products[].groups[].options[].id | integer | No | ||||
| data.categories[].products[].groups[].options[].name | string | No | Sauced Fingerz | |||
| data.categories[].products[].image | string | No | ||||
| data.categories[].products[].product_id | integer | No | 113251777 | |||
| data.categories[].products[].short_description | string | No | ||||
| data.categories[].products[].size | string | No | ||||
| data.categories[].products[].tags | array | No | ||||
| data.categories[].products[].title | string | No | Lemon Pepper Wings & Things Meal | |||
| data.categories[].slug | string | No | ||||
| data.categories[].spotlight | boolean | No | ||||
| data.category_count | integer | No | 15 | |||
| data.fetched_at | string | No | ||||
| data.product_count | integer | No | 106 | |||
| data.source_url | string | No | ||||
| msg | unknown | No | Msg is the message that describes the result of the request @example "Request successful" |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/zaxbys/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms