Endpoint Playground
Test Crawlora's Papa John's Directory 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/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | No | Directory path from a previous response's children[].path; omit for the root country index |
{
"code": 200,
"msg": "OK",
"data": {
"path": "",
"name": "",
"children": [
{
"name": "United States",
"path": "united-states",
"url": "https://locations.papajohns.com/united-states",
"store_count": 3500,
"is_store": false
}
],
"count": 1,
"source_url": "https://locations.papajohns.com/index.html",
"fetched_at": "2026-09-04T09: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 level of Papa John's store directory. Omit path for the root country index, then pass a child's path to descend through state, city, and store levels. Each child includes its name, path, URL, store count when available, and whether it is a store leaf. Pass a store child's path to GET /papajohns/store. This is a directory browse; use GET /papajohns/nearby for a coordinate search.
{
"code": 200,
"msg": "OK",
"data": {
"path": "",
"name": "",
"children": [
{
"name": "United States",
"path": "united-states",
"url": "https://locations.papajohns.com/united-states",
"store_count": 3500,
"is_store": false
}
],
"count": 1,
"source_url": "https://locations.papajohns.com/index.html",
"fetched_at": "2026-09-04T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/directory" \
-H "x-api-key: $CRAWLORA_API_KEY"