Papa John's API endpoint
Use Crawlora's Papa John's Colombia 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/colombia/menuReturns Papa John's **Colombia** menu with prices in Colombian pesos. Every product lists its priced SKU variants across the four axes Colombia sells on — size, dough, crust and sauce — each with its own price and availability. Colombia runs its own ordering platform, independent of the six markets behind GET /papajohns/intl/menu and of Peru and El Salvador, so it has its own endpoint. Prices are Colombian pesos and are not comparable with any other market. The full catalog is paged through before returning, so the response is complete rather than a first page. 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, e.g. Pizzas or Bebidas | ||
| include_variants | boolean | No | Include every priced SKU variant. Default true; set false for a lighter response carrying only each product's cheapest price. | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/papajohns/colombia/menu?include_variants=true" \ -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.
- Colombia prices on four axes and every SKU is a real priced unit, so variants carry `size`, `crust` (dough and border joined when they differ), `sauce`, **and `fulfillment`**. - **`fulfillment` matters.** Colombia prices delivery and pickup separately — the same item is commonly ~15% dearer for `Domicilio` than for `Recoger en Tienda`. It is the most common specification in the catalog, so two variants that differ only by it are not duplicates. - The whole catalog is paged through before returning; the response is not a first page. If a later page fails, the products already retrieved are still returned and `partial` is set to `true` — a quietly short menu is indistinguishable from a genuinely small one, so it is flagged rather than left to look complete. `partial` is absent on a complete response. - SKUs with no price are omitted rather than returned looking free. - A `category` that matches nothing returns a `404`, which distinguishes a bad filter from a genuinely empty menu. Example response: ```json {"code":200,"msg":"OK","data":{"market":"colombia","currency":"COP","categories":[{"name":"Acompañamientos","products":[{"id":"58","name":"Garlic Knots","category":"Acompañamientos","price_from":13277.31,"currency":"COP","variants":[{"fulfillment":"Recoger en Tienda","price":13277.31,"currency":"COP","available":true,"sku":"1700"},{"fulfillment":"Domicilio","price":15882.35,"currency":"COP","available":true,"sku":"598"}]}],"product_count":5}],"product_count":83,"source_url":"https://www.papajohns.com.co/api/catalog_system/pub/products/search","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": "colombia",
"currency": "COP",
"categories": [
{
"name": "Acompañamientos",
"products": [
{
"id": "58",
"name": "Garlic Knots",
"category": "Acompañamientos",
"price_from": 13277.31,
"currency": "COP",
"variants": [
{
"fulfillment": "Recoger en Tienda",
"price": 13277.31,
"currency": "COP",
"available": true,
"sku": "1700"
},
{
"fulfillment": "Domicilio",
"price": 15882.35,
"currency": "COP",
"available": true,
"sku": "598"
}
]
}
],
"product_count": 5
}
],
"product_count": 83,
"source_url": "https://www.papajohns.com.co/api/catalog_system/pub/products/search",
"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/colombia/menu?include_variants=true" \
-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