Endpoint Playground
Test Crawlora's Papa John's Allergens 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/allergens" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"section": "Crust Options",
"name": "Original Crust",
"allergens": {
"peanut": false,
"tree_nut": false,
"egg": false,
"milk": false,
"wheat": true,
"soy": false,
"fish": false,
"shellfish": false,
"sesame": false
}
},
{
"section": "Crust Options",
"name": "Gluten-Free Crust",
"allergens": {
"peanut": false,
"tree_nut": false,
"egg": true,
"milk": true,
"wheat": false,
"soy": true,
"fish": false,
"shellfish": false,
"sesame": false
}
}
],
"count": 133,
"source_url": "https://www.papajohns.com/allergens/papa-johns-allergen-guide.html",
"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 complete published item x allergen matrix (crusts, sauces, cheeses, meats, veggies, and more), grouped by section, each item flagged for peanut, tree nut, egg, milk, wheat, soy, fish, shellfish, and sesame content.
{
"code": 200,
"msg": "OK",
"data": {
"items": [
{
"section": "Crust Options",
"name": "Original Crust",
"allergens": {
"peanut": false,
"tree_nut": false,
"egg": false,
"milk": false,
"wheat": true,
"soy": false,
"fish": false,
"shellfish": false,
"sesame": false
}
},
{
"section": "Crust Options",
"name": "Gluten-Free Crust",
"allergens": {
"peanut": false,
"tree_nut": false,
"egg": true,
"milk": true,
"wheat": false,
"soy": true,
"fish": false,
"shellfish": false,
"sesame": false
}
}
],
"count": 133,
"source_url": "https://www.papajohns.com/allergens/papa-johns-allergen-guide.html",
"fetched_at": "2026-09-05T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/allergens" \
-H "x-api-key: $CRAWLORA_API_KEY"