Papa John's API endpoint
Use Crawlora's Papa John's India Menu Item API to extract supported public Papa John's 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.
/papajohns/india/menu/itemReturns one Papa John's **India** menu item with its complete customization tree: every size, and for each size every crust, topping, dipping sauce, drizzle, and base sauce with that option's own price in Indian Rupees. The option group flagged base_price carries the item's base price for that size (the crust group on pizzas) rather than an add-on charge; half_price is the surcharge when the option is applied to one half of a pizza. India market only -- prices are Indian Rupees. Use GET /papajohns/india/menu to discover item ids. 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 |
|---|---|---|---|---|---|
| item_id | string | Yes | Item id (saleitem_id) from GET /papajohns/india/menu | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/papajohns/india/menu/item" \ -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.
- The option group flagged `base_price` carries the item's base price for that size (the crust group on pizzas) rather than an add-on charge. Every other group's `price` is a surcharge. - `half_price` on a choice is the charge when that option is applied to one half of a pizza; a group with `halves_enabled` supports half-and-half selection. - `selection_rule` and `selection_spec` come from upstream and describe how many options may be picked, e.g. `Exactly` `1`, or `Between` `0,10`. - Options upstream has disabled are omitted rather than returned inactive. - An unknown `item_id` returns a `404`. Deal ids are not item ids — use [`/papajohns/india/deal`](papajohns-india-deal.md) for those. Example response: ```json {"code":200,"msg":"OK","data":{"market":"india","currency":{"code":"₹","name":"Indian Rupee","locale":"en-IN","country_code":"91"},"taxes":[{"name":"GST","type":"percentage","value":5,"inclusive":false}],"category":"Pizzas","item":{"id":"71","name":"MARGHERITA","kind":"item","price":399,"discounted":false,"category_id":"6","tags":["Veg"],"customizable":true,"upsell":false,"availability":{},"sizes":[{"id":"3","name":"Large","default":true,"rank":1,"option_groups":[{"id":"1","name":"Crust","selection_rule":"Exactly","selection_spec":"1","base_price":true,"halves_enabled":true,"choices":[{"id":"1","name":"Original Crust","price":799,"half_price":399.5,"default":true,"extra":false,"removable":false}]}]}]},"source_url":"https://papajohns.suntechsolutions.us/api/newmenu?store_id=0&day=6&channel_id=0","fetched_at":"2026-09-05T09: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": {
"market": "india",
"currency": {
"code": "₹",
"name": "Indian Rupee",
"locale": "en-IN",
"country_code": "91"
},
"taxes": [
{
"name": "GST",
"type": "percentage",
"value": 5,
"inclusive": false
}
],
"category": "Pizzas",
"item": {
"id": "71",
"name": "MARGHERITA",
"kind": "item",
"price": 399,
"discounted": false,
"category_id": "6",
"tags": [
"Veg"
],
"customizable": true,
"upsell": false,
"availability": {},
"sizes": [
{
"id": "3",
"name": "Large",
"default": true,
"rank": 1,
"option_groups": [
{
"id": "1",
"name": "Crust",
"selection_rule": "Exactly",
"selection_spec": "1",
"base_price": true,
"halves_enabled": true,
"choices": [
{
"id": "1",
"name": "Original Crust",
"price": 799,
"half_price": 399.5,
"default": true,
"extra": false,
"removable": false
}
]
}
]
}
]
},
"source_url": "https://papajohns.suntechsolutions.us/api/newmenu?store_id=0&day=6&channel_id=0",
"fetched_at": "2026-09-05T09:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/papajohns.indiaMenuItemResponseDoc
| 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 | papajohns.IndiaMenuItemResponse | No | ||||
| data.category | string | No | Pizzas | Category is the section this item was found under. | ||
| data.currency | papajohns.IndiaCurrency | No | ||||
| data.currency.code | string | No | ₹ | |||
| data.currency.country_code | string | No | 91 | |||
| data.currency.locale | string | No | en-IN | |||
| data.currency.name | string | No | Indian Rupee | |||
| data.fetched_at | string | No | ||||
| data.item | papajohns.IndiaMenuItem | No | ||||
| data.item.availability | unknown | No | Availability lists the store/channel/day combinations where this item is blacked out. The item is unavailable only where all three match; empty lists mean it is available everywhere. | |||
| data.item.buy_x | integer | No | ||||
| data.item.category_id | string | No | 6 | |||
| data.item.customizable | boolean | No | true | Customizable reports whether the item exposes a size/crust/topping tree. | ||
| data.item.description | string | No | ||||
| data.item.discounted | boolean | No | false | |||
| data.item.get_y | integer | No | ||||
| data.item.id | string | No | 71 | |||
| data.item.image_url | string | No | ||||
| data.item.kind | string | No | item | Kind is "item" for an a la carte product or "deal" for a combo/offer. | ||
| data.item.name | string | No | MARGHERITA | |||
| data.item.price | number | No | 399 | Price is the item's list price in the franchise currency. A deal with a computed price (BuyXGetY, HalfAndHalf, variablePrice) reports 0 here -- read price_type instead. | ||
| data.item.price_type | string | No | BuyXGetY | PriceType is set on deals only: fixedPrice, BuyXGetY, HalfAndHalf, or variablePrice. | ||
| data.item.rank | integer | No | 1 | |||
| data.item.sizes | array | No | Sizes is populated only when include_options=true. | |||
| data.item.sizes[].default | boolean | No | true | |||
| data.item.sizes[].id | string | No | 3 | |||
| data.item.sizes[].name | string | No | Large | |||
| data.item.sizes[].option_groups | array | No | ||||
| data.item.sizes[].option_groups[].base_price | boolean | No | true | |||
| data.item.sizes[].option_groups[].choices | array | No | ||||
| data.item.sizes[].option_groups[].choices[].default | boolean | No | true | |||
| data.item.sizes[].option_groups[].choices[].extra | boolean | No | false | |||
| data.item.sizes[].option_groups[].choices[].half_price | number | No | 399.5 | |||
| data.item.sizes[].option_groups[].choices[].id | string | No | 1 | |||
| data.item.sizes[].option_groups[].choices[].image_url | string | No | ||||
| data.item.sizes[].option_groups[].choices[].name | string | No | Original Crust | |||
| data.item.sizes[].option_groups[].choices[].price | number | No | 799 | |||
| data.item.sizes[].option_groups[].choices[].removable | boolean | No | false | |||
| data.item.sizes[].option_groups[].choices[].strike_off_price | number | No | ||||
| data.item.sizes[].option_groups[].halves_enabled | boolean | No | true | |||
| data.item.sizes[].option_groups[].id | string | No | 1 | |||
| data.item.sizes[].option_groups[].name | string | No | Crust | |||
| data.item.sizes[].option_groups[].selection_rule | string | No | Exactly | |||
| data.item.sizes[].option_groups[].selection_spec | string | No | 1 | |||
| data.item.sizes[].rank | integer | No | 1 | |||
| data.item.strike_off_price | number | No | 499 | |||
| data.item.sub_category_id | string | No | 4 | |||
| data.item.tags | array | No | Tags are the item's dietary/attribute markers, e.g. Veg, Non Veg, Spicy. | |||
| data.item.upsell | boolean | No | false | |||
| data.market | string | No | india | |||
| data.source_url | string | No | ||||
| data.taxes | array | No | ||||
| data.taxes[].inclusive | boolean | No | false | |||
| data.taxes[].name | string | No | GST | |||
| data.taxes[].type | string | No | percentage | |||
| data.taxes[].value | number | No | 5 | |||
| 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/papajohns/india/menu/item" \
-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