Shake Shack API endpoint
Use Crawlora's Shake Shack Menu API to extract supported public Shake Shack 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.
/shakeshack/menuReturns one Shake Shack location's full menu as a category tree: every category and its products, with name, description, base calories, allergens, a promotional/dietary badge when published (e.g. "LIMITED TIME ONLY", "VEGETARIAN"), image, and a full customization tree (size, additions, removals, allergen flags), each choice carrying its own price and calorie delta. location_id comes from GET /shakeshack/nearby. Many items, most notably burgers, price entirely through a required size selection rather than a base price, so price is commonly 0 for those items -- the real price lives on the size modifier's own choices. 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 |
|---|---|---|---|---|---|
| location_id | integer | Yes | Location id from /shakeshack/nearby | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/shakeshack/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 |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"location_id": 60161,
"categories": [
{
"name": "Burgers & More",
"products": [
{
"chain_product_id": 1119032,
"name": "ShackBurger",
"description": "A made-to-order quarter pound* per patty of 100% Angus beef with American cheese, lettuce, tomato, and ShackSauce on a toasted potato bun.",
"price": 0,
"base_calories": 760,
"allergens": "dairy allergy, egg allergy, wheat allergy, soy allergy, sesame allergy",
"modifiers": [
{
"group_id": 890226902,
"name": "Select Size:",
"type": "SIZE",
"choices": [
{
"option_id": 4127201664,
"name": "Single",
"price": 7.99,
"is_default": false
},
{
"option_id": 4127201665,
"name": "Double",
"price": 10.49,
"is_default": true
}
]
}
]
}
]
}
],
"category_count": 8,
"product_count": 42,
"source_url": "https://ssma24.com/v3/locations/60161/menu?platform=web&includeCombo=true&includeSoldOut=true",
"fetched_at": "2026-09-04T12:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/shakeshack.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 | shakeshack.MenuResponse | No | ||||
| data.categories | array | No | ||||
| data.categories[].name | string | No | Burgers & More | |||
| data.categories[].products | array | No | ||||
| data.categories[].products[].allergens | string | No | dairy allergy, egg allergy, soy allergy, wheat allergy, sesame allergy | Allergens is upstream's own comma-separated free text, passed through as published rather than split into a fixed list. | ||
| data.categories[].products[].badge | string | No | VEGETARIAN | Badge is a short promotional/dietary label Shake Shack publishes for some items, e.g. "LIMITED TIME ONLY", "VEGETARIAN". | ||
| data.categories[].products[].base_calories | integer | No | 880 | BaseCalories is 0 when upstream reports none. | ||
| data.categories[].products[].chain_product_id | integer | No | 1119032 | |||
| data.categories[].products[].description | string | No | ||||
| data.categories[].products[].image_url | string | No | ||||
| data.categories[].products[].modifiers | array | No | ||||
| data.categories[].products[].modifiers[].chain_modifier_id | integer | No | 38041 | |||
| data.categories[].products[].modifiers[].choices | array | No | ||||
| data.categories[].products[].modifiers[].choices[].calorie_delta | integer | No | -1 | |||
| data.categories[].products[].modifiers[].choices[].chain_option_id | integer | No | 213463 | |||
| data.categories[].products[].modifiers[].choices[].groups | array | No | ||||
| data.categories[].products[].modifiers[].choices[].is_default | boolean | No | ||||
| data.categories[].products[].modifiers[].choices[].name | string | No | No Lettuce | |||
| data.categories[].products[].modifiers[].choices[].option_id | integer | No | 4127201667 | |||
| data.categories[].products[].modifiers[].choices[].price | number | No | 0 | |||
| data.categories[].products[].modifiers[].group_id | integer | No | 890226904 | |||
| data.categories[].products[].modifiers[].name | string | No | Remove Lettuce: | |||
| data.categories[].products[].modifiers[].type | string | No | REMOVAL | |||
| data.categories[].products[].name | string | No | West Coast Burger | |||
| data.categories[].products[].price | number | No | 0 | Price is this item's base price. Many items price entirely through a required size/flavor modifier rather than a base price, so 0 is common here -- not a parsing gap (same shape as this repo's other Olo-backed menus, e.g. Jimmy John's). | ||
| data.category_count | integer | No | 11 | |||
| data.fetched_at | string | No | ||||
| data.location_id | integer | No | 14992 | |||
| data.product_count | integer | No | 76 | |||
| 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/shakeshack/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