Papa John's API endpoint
Use Crawlora's Papa John's El Salvador Menu 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/elsalvador/menuReturns Papa John's **El Salvador** menu with prices in US dollars. Each pizza lists its full size and crust price matrix — every combination of size (Grande, Gigante) and crust (Masa Original, Masa Delgada, Orilla Rellena de Queso) with that combination's own price — while sides, desserts and extras carry a single price. El Salvador runs its own ordering platform, independent of the six markets behind GET /papajohns/intl/menu and of Colombia and Peru, so it has its own endpoint. This is El Salvador's national menu; the site itself notes that choosing a restaurant can reveal further items. 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 |
|---|---|---|---|---|---|
| category | string | No | Return only categories whose name contains this text, case-insensitive. One of: Pizzas, Entradas, Postres, Extras | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/papajohns/elsalvador/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.
- **Pizzas carry a full size × crust price matrix.** Each combination of size (`GRANDE`, `GIGANTE`) and crust (`Masa Original`, `Masa Delgada`, `Orilla Rellena de Queso`) is returned as its own priced variant. The storefront shows only one headline price per card; this endpoint returns the whole matrix. - Sides, desserts and extras have a single price and one variant. - Variants are ordered cheapest first and are stable across calls. - This is El Salvador's **national** menu. The site itself notes that choosing a restaurant can reveal further items, so treat this as the default catalog rather than any one restaurant's. - A page carrying no menu sections is reported as an upstream error rather than an empty menu, so page-shape drift or a challenge page cannot look like a restaurant with nothing on the menu. - A `category` that matches nothing returns a `404`. Example response: ```json {"code":200,"msg":"OK","data":{"market":"el-salvador","currency":"USD","categories":[{"name":"Favoritas","products":[{"id":"2","name":"The Works","category":"Favoritas","image_url":"https://pjsv-images.nyc3.digitaloceanspaces.com/common-files/product-2/the-works.jpg","url":"https://www.papajohns.com.sv/site/producto/v/2/pizzas/the-works.html","price_from":11.99,"currency":"USD","variants":[{"name":"Grande","size":"GRANDE","crust":"Masa Original","price":11.99,"currency":"USD","available":true,"sku":"397"},{"name":"Gigante","size":"GIGANTE","crust":"Masa Original","price":14.99,"currency":"USD","available":true,"sku":"398"},{"name":"Orilla Rellena de Queso","size":"GIGANTE","crust":"Orilla Rellena de Queso","price":16.99,"currency":"USD","available":true,"sku":"714"}]}],"product_count":25}],"product_count":25,"source_url":"https://www.papajohns.com.sv/site/menu","fetched_at":"2026-09-06T09: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": "el-salvador",
"currency": "USD",
"categories": [
{
"name": "Favoritas",
"products": [
{
"id": "2",
"name": "The Works",
"category": "Favoritas",
"image_url": "https://pjsv-images.nyc3.digitaloceanspaces.com/common-files/product-2/the-works.jpg",
"url": "https://www.papajohns.com.sv/site/producto/v/2/pizzas/the-works.html",
"price_from": 11.99,
"currency": "USD",
"variants": [
{
"name": "Grande",
"size": "GRANDE",
"crust": "Masa Original",
"price": 11.99,
"currency": "USD",
"available": true,
"sku": "397"
},
{
"name": "Gigante",
"size": "GIGANTE",
"crust": "Masa Original",
"price": 14.99,
"currency": "USD",
"available": true,
"sku": "398"
},
{
"name": "Orilla Rellena de Queso",
"size": "GIGANTE",
"crust": "Orilla Rellena de Queso",
"price": 16.99,
"currency": "USD",
"available": true,
"sku": "714"
}
]
}
],
"product_count": 25
}
],
"product_count": 25,
"source_url": "https://www.papajohns.com.sv/site/menu",
"fetched_at": "2026-09-06T09:00:00Z"
}
}Request schema
No body schema
Response schema
#/definitions/papajohns.latamMenuResponseDoc
| 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.LatamMenuResponse | No | ||||
| data.categories | array | No | ||||
| data.categories[].id | string | No | 1 | |||
| data.categories[].name | string | No | Pizzas | |||
| data.categories[].product_count | integer | No | 25 | |||
| data.categories[].products | array | No | ||||
| data.categories[].products[].category | string | No | Pizzas | |||
| data.categories[].products[].currency | string | No | USD | |||
| data.categories[].products[].description | string | No | ||||
| data.categories[].products[].id | string | No | 8 | |||
| data.categories[].products[].image_url | string | No | ||||
| data.categories[].products[].name | string | No | The Works | |||
| data.categories[].products[].price_from | number | No | 11.99 | PriceFrom is the cheapest priced variant, so a caller can rank products without walking every variant. | ||
| data.categories[].products[].url | string | No | ||||
| data.categories[].products[].variants | array | No | ||||
| data.categories[].products[].variants[].available | boolean | No | true | |||
| data.categories[].products[].variants[].crust | string | No | Masa Original | |||
| data.categories[].products[].variants[].currency | string | No | USD | |||
| data.categories[].products[].variants[].fulfillment | string | No | Domicilio | Fulfillment is the order channel this price applies to, where the market prices delivery and pickup differently. Colombia does: the same item is commonly ~15% dearer for "Domicilio" than "Recoger en Tienda", so two variants that look otherwise identical are not duplicates. | ||
| data.categories[].products[].variants[].list_price | number | No | ListPrice is the pre-discount price where the market publishes one and it actually differs from price. | |||
| data.categories[].products[].variants[].name | string | No | Gigante | Name is the market's own label for the variant where it gives one. | ||
| data.categories[].products[].variants[].price | number | No | 14.99 | |||
| data.categories[].products[].variants[].sauce | string | No | Salsa Pizza | Sauce is populated only by Colombia, whose SKUs vary by sauce too. | ||
| data.categories[].products[].variants[].size | string | No | GIGANTE | Size and Crust are populated where the market distinguishes them. | ||
| data.categories[].products[].variants[].sku | string | No | ||||
| data.category | string | No | ||||
| data.currency | string | No | USD | |||
| data.fetched_at | string | No | ||||
| data.market | string | No | el-salvador | |||
| data.partial | boolean | No | false | Partial is true when a paginated upstream failed part-way and the response carries only the pages that were retrieved. A menu that is quietly short is indistinguishable from one that genuinely has fewer items, so it is flagged rather than left to look complete. | ||
| data.product_count | integer | No | 25 | ProductCount is how many products the response carries. Where the upstream paginates, every page is followed before returning. | ||
| 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/papajohns/elsalvador/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