Endpoint Playground
Test Crawlora's Papa John's Colombia Menu API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/papajohns/colombia/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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. |
{
"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"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns 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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/papajohns/colombia/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"