Endpoint Playground
Test Crawlora's Papa John's International Product 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/intl/product?market=chile&product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| market | string | Yes | chile | Market. One of: chile, costa-rica, guatemala, panama, portugal, spain |
| product_id | string | Yes | Product id from GET /papajohns/intl/menu |
{
"code": 200,
"msg": "OK",
"data": {
"market": "spain",
"id": 8,
"name": "Super Papa",
"category": "pizza",
"description": "Salsa de tomate natural, carne de cerdo especiada, pepperoni crujiente, york XL, pimiento verde fresco…",
"customizable": true,
"available_as_half": true,
"cheese_changeable": true,
"image_url": "https://cdn.new.papajohns.es/pictures/pizzas/superpapa750x600.webp",
"slug": "super-papa",
"source_url": "https://api.papajohns.es/v1/pizzas/8",
"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 one product's own catalog record in one of six international markets: Chile, Costa Rica, Guatemala, Panama, Portugal, and Spain -- its description, imagery, dietary markers, and customization rules (whether toppings may be changed, how many extra ingredients are included free, and whether it can be used as one half of a half-and-half pizza). This record carries no price, because pricing is per restaurant: use GET /papajohns/intl/menu for prices. Product ids come from that same endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"market": "spain",
"id": 8,
"name": "Super Papa",
"category": "pizza",
"description": "Salsa de tomate natural, carne de cerdo especiada, pepperoni crujiente, york XL, pimiento verde fresco…",
"customizable": true,
"available_as_half": true,
"cheese_changeable": true,
"image_url": "https://cdn.new.papajohns.es/pictures/pizzas/superpapa750x600.webp",
"slug": "super-papa",
"source_url": "https://api.papajohns.es/v1/pizzas/8",
"fetched_at": "2026-09-06T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/intl/product?market=<market>&product_id=<product_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"