Endpoint Playground
Test Crawlora's Papa John's Store 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/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| path | string | Yes | Store path from a /papajohns/directory child marked is_store=true |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "5054",
"name": "Papa Johns Pizza",
"address": {
"line1": "2136 S FREMONT AVE",
"city": "Alhambra",
"region": "CA",
"postal_code": "91803",
"country": "US"
},
"phone_number": "(626) 642-5645",
"latitude": 34.0683839,
"longitude": -118.1493491,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "10:30",
"closes": "00:15"
}
],
"timezone": "America/Los_Angeles",
"path": "united-states/ca/91803/alhambra/2136-s-fremont-ave",
"source_url": "https://locations.papajohns.com/united-states/ca/91803/alhambra/2136-s-fremont-ave",
"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 Papa John's store's published profile: address, phone, coordinates, general and pickup hours, timezone, Google Place id, and ordering link. The path comes from a store child returned by GET /papajohns/directory. Passing a directory path returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "5054",
"name": "Papa Johns Pizza",
"address": {
"line1": "2136 S FREMONT AVE",
"city": "Alhambra",
"region": "CA",
"postal_code": "91803",
"country": "US"
},
"phone_number": "(626) 642-5645",
"latitude": 34.0683839,
"longitude": -118.1493491,
"hours": [
{
"day_of_week": "Monday",
"closed": false,
"opens": "10:30",
"closes": "00:15"
}
],
"timezone": "America/Los_Angeles",
"path": "united-states/ca/91803/alhambra/2136-s-fremont-ave",
"source_url": "https://locations.papajohns.com/united-states/ca/91803/alhambra/2136-s-fremont-ave",
"fetched_at": "2026-09-04T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/store?path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"