Endpoint Playground
Test Crawlora's Papa John's Nearby 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/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| latitude | number | Yes | Search center latitude | |
| longitude | number | Yes | Search center longitude | |
| radius | integer | No | Search radius in miles, 1-100 (default 25) | |
| limit | integer | No | Maximum stores to return, 1-50 (default 10) | |
| offset | integer | No | Result offset, 0 or greater (default 0) |
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "4269",
"name": "Papa Johns Pizza",
"address": {
"line1": "123 Main St",
"city": "Los Angeles",
"region": "CA",
"postal_code": "90001",
"country": "US"
},
"distance_miles": 0.6,
"distance_kilometers": 0.97,
"path": "united-states/ca/90001/los-angeles/123-main-st"
}
],
"count": 1,
"total_in_radius": 1,
"radius": 25,
"source_url": "https://cdn.yextapis.com/v2/accounts/me/entities/geosearch?...",
"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 Papa John's stores within a radius of a latitude/longitude, ordered nearest first, with distance, address, phone, hours, timezone, price range, fulfillment services, payment options, and ordering link. The response includes total_in_radius and offset paging. A coordinate with no nearby stores returns an empty list.
{
"code": 200,
"msg": "OK",
"data": {
"stores": [
{
"store_id": "4269",
"name": "Papa Johns Pizza",
"address": {
"line1": "123 Main St",
"city": "Los Angeles",
"region": "CA",
"postal_code": "90001",
"country": "US"
},
"distance_miles": 0.6,
"distance_kilometers": 0.97,
"path": "united-states/ca/90001/los-angeles/123-main-st"
}
],
"count": 1,
"total_in_radius": 1,
"radius": 25,
"source_url": "https://cdn.yextapis.com/v2/accounts/me/entities/geosearch?...",
"fetched_at": "2026-09-04T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/nearby?latitude=<latitude>&longitude=<longitude>" \
-H "x-api-key: $CRAWLORA_API_KEY"