Endpoint Playground
Test Crawlora's Papa John's Poland 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/poland/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | Return only sections whose name or slug contains this text, case-insensitive. Slugs work in either market, e.g. pizza, combo, deserty, napitki, sauce, zakuski |
{
"code": 200,
"msg": "OK",
"data": {
"market": "poland",
"currency": "PLN",
"categories": [
{
"id": "1",
"name": "Pizza",
"alias": "pizza",
"products": [
{
"id": "1588",
"name": "Italian Sausage",
"category": "Pizza",
"price_from": 49.99,
"currency": "PLN",
"variants": [
{
"size": "29 cm",
"crust": "tradycyjna",
"price": 58.98,
"currency": "PLN",
"available": true,
"sku": "1588"
},
{
"size": "34 cm",
"crust": "tradycyjna",
"price": 67.98,
"currency": "PLN",
"available": true,
"sku": "1541"
}
]
}
],
"product_count": 23
}
],
"product_count": 84,
"variant_count": 292,
"source_url": "https://papajohns.pl/warszawa",
"fetched_at": "2026-09-07T09: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 **Poland** menu with prices in Polish zloty. Russia and Poland run one franchise platform of their own, separate from the six markets behind GET /papajohns/intl/menu and from Colombia, Peru and El Salvador, so each has its own endpoint. The catalog is national -- it does not vary by city -- and every product lists its priced variants with size, dough and any stuffed crust. Prices are zloty and are not comparable with any other market.
{
"code": 200,
"msg": "OK",
"data": {
"market": "poland",
"currency": "PLN",
"categories": [
{
"id": "1",
"name": "Pizza",
"alias": "pizza",
"products": [
{
"id": "1588",
"name": "Italian Sausage",
"category": "Pizza",
"price_from": 49.99,
"currency": "PLN",
"variants": [
{
"size": "29 cm",
"crust": "tradycyjna",
"price": 58.98,
"currency": "PLN",
"available": true,
"sku": "1588"
},
{
"size": "34 cm",
"crust": "tradycyjna",
"price": 67.98,
"currency": "PLN",
"available": true,
"sku": "1541"
}
]
}
],
"product_count": 23
}
],
"product_count": 84,
"variant_count": 292,
"source_url": "https://papajohns.pl/warszawa",
"fetched_at": "2026-09-07T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/poland/menu" \
-H "x-api-key: $CRAWLORA_API_KEY"