Endpoint Playground
Test Crawlora's Papa John's Nutrition 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/nutrition?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | Yes | One of: cheese, crust, desserts, dipping-sauces, drinks, extras, papa-bowls, papadias, pizzas, sandwiches, sauce, sides, toppings, wings |
{
"code": 200,
"msg": "OK",
"data": {
"category": "pizzas",
"items": [
{
"name": "Cheese Pizza",
"variants": [
{
"label": "Original Crust - Pizza for One",
"serving_size": "1 slice",
"servings": "4 slices per pizza",
"nutrition": {
"calories": 200,
"calories_from_fat": 60,
"total_fat_g": 7,
"cholesterol_mg": 20,
"sodium_mg": 500,
"total_carbohydrate_g": 25,
"dietary_fiber_g": 1,
"sugars_g": 3,
"protein_g": 8
}
}
]
}
],
"count": 35,
"source_url": "https://www.papajohns.com/company/nutritional-details/",
"fetched_at": "2026-09-05T09: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 own published nutrition-facts panel for every item in one category -- full pizzas by name, or a single ingredient family (crust, cheese, sauce, toppings). Each item lists every published size/crust variant with serving size and a full nutrition-facts breakdown (calories, fat, cholesterol, sodium, carbohydrate, fiber, sugars, protein). This is Papa John's national reference data, not priced per-store data -- see GET /papajohns/directory for store lookup.
{
"code": 200,
"msg": "OK",
"data": {
"category": "pizzas",
"items": [
{
"name": "Cheese Pizza",
"variants": [
{
"label": "Original Crust - Pizza for One",
"serving_size": "1 slice",
"servings": "4 slices per pizza",
"nutrition": {
"calories": 200,
"calories_from_fat": 60,
"total_fat_g": 7,
"cholesterol_mg": 20,
"sodium_mg": 500,
"total_carbohydrate_g": 25,
"dietary_fiber_g": 1,
"sugars_g": 3,
"protein_g": 8
}
}
]
}
],
"count": 35,
"source_url": "https://www.papajohns.com/company/nutritional-details/",
"fetched_at": "2026-09-05T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/nutrition?category=<category>" \
-H "x-api-key: $CRAWLORA_API_KEY"