JimmyJohns API endpoint
Use Crawlora's Jimmy John's Modifiers API to extract supported public JimmyJohns 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.
/jimmy-johns/modifiersReturns one menu product's full customization tree: size, bread, and per-ingredient choices (extra/regular/light/none), each with its real price and calorie delta. Groups nest -- picking a size choice can reveal a bread group, which can reveal one group per ingredient -- so a size step, a bread step, and every "Customize Sandwich" ingredient all live in one recursive tree. product_id comes from GET /jimmy-johns/menu. 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 |
|---|---|---|---|---|---|
| product_id | integer | Yes | Product id from a /jimmy-johns/menu product | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/jimmy-johns/modifiers" \ -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.
- Groups nest recursively through a choice's `groups`: picking a size choice can reveal a bread group, and picking "Customize Sandwich" reveals one group per ingredient (bread, ham, cheese, lettuce, etc.). A sandwich's real per-size price lives here — under "Choose Your Size" — not in `/jimmy-johns/menu`'s `cost` field. - `cost` is a price delta relative to the parent choice, not an absolute price. Most ingredient choices are free (the included default); an "Xtra" choice carries a positive cost, and a "No" choice is usually `0` with a negative `base_calories`. - `base_calories` can be negative for a "light"/"no" ingredient choice, reflecting the calorie reduction from the default. - `min_selects`/`max_selects` are omitted when the upstream places no explicit limit beyond `mandatory`. Example response: ```json {"code":200,"msg":"OK","data":{"product_id":33276056,"groups":[{"group_id":1176353985,"name":"Make it a Combo!","mandatory":true,"choices":[{"option_id":5265915593,"name":"No","cost":0,"is_default":true,"groups":[{"group_id":1176354037,"name":"Choose Your Size","mandatory":true,"choices":[{"option_id":5265915696,"chain_option_id":2476875,"name":"REGULAR","cost":8.69,"is_default":true,"groups":[{"group_id":1176355033,"name":"Smoked Ham","mandatory":true,"choices":[{"option_id":5265919605,"name":"Xtra Smoked Ham","cost":2.29,"base_calories":"70"},{"option_id":5265919606,"name":"Reg Smoked Ham","cost":0,"is_default":true},{"option_id":5265919608,"name":"No Smoked Ham","cost":0,"base_calories":"-70"}]}]}]}]}]}],"group_count":1,"source_url":"https://jj.ordering.api.olo.com/v1.1/products/33276056/modifiers","fetched_at":"2026-09-03T00:00:00Z"}} ```
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": {
"product_id": 33276056,
"groups": [
{
"group_id": 1176353985,
"name": "Make it a Combo!",
"mandatory": true,
"choices": [
{
"option_id": 5265915593,
"name": "No",
"cost": 0,
"is_default": true,
"groups": [
{
"group_id": 1176354037,
"name": "Choose Your Size",
"mandatory": true,
"choices": [
{
"option_id": 5265915696,
"chain_option_id": 2476875,
"name": "REGULAR",
"cost": 8.69,
"is_default": true,
"groups": [
{
"group_id": 1176355033,
"name": "Smoked Ham",
"mandatory": true,
"choices": [
{
"option_id": 5265919605,
"name": "Xtra Smoked Ham",
"cost": 2.29,
"base_calories": "70"
},
{
"option_id": 5265919606,
"name": "Reg Smoked Ham",
"cost": 0,
"is_default": true
},
{
"option_id": 5265919608,
"name": "No Smoked Ham",
"cost": 0,
"base_calories": "-70"
}
]
}
]
}
]
}
]
}
]
}
],
"group_count": 1,
"source_url": "https://jj.ordering.api.olo.com/v1.1/products/33276056/modifiers",
"fetched_at": "2026-09-03T00:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/jimmyjohns.modifiersResponseDoc
| 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 | jimmyjohns.ModifiersResponse | No | ||||
| data.fetched_at | string | No | ||||
| data.group_count | integer | No | 9 | |||
| data.groups | array | No | ||||
| data.groups[].chain_modifier_id | integer | No | 480998 | |||
| data.groups[].choices | array | No | ||||
| data.groups[].choices[].base_calories | string | No | 70 | BaseCalories is this choice's calorie delta, which can be negative for a "light"/"no" ingredient choice. | ||
| data.groups[].choices[].chain_option_id | integer | No | 2476875 | |||
| data.groups[].choices[].cost | number | No | 8.69 | Cost is this choice's price delta. Many choices are free (the included default); an upcharge choice (e.g. "Xtra Smoked Ham") or a size step carries a positive cost. | ||
| data.groups[].choices[].groups | array | No | ||||
| data.groups[].choices[].is_default | boolean | No | ||||
| data.groups[].choices[].max_calories | string | No | ||||
| data.groups[].choices[].name | string | No | REGULAR | |||
| data.groups[].choices[].option_id | integer | No | 5265915696 | |||
| data.groups[].group_id | integer | No | 1176354037 | |||
| data.groups[].mandatory | boolean | No | ||||
| data.groups[].max_selects | integer | No | ||||
| data.groups[].min_selects | integer | No | ||||
| data.groups[].name | string | No | Choose Your Size | |||
| data.product_id | integer | No | 33276056 | |||
| 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/jimmy-johns/modifiers" \
-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