Endpoint Playground
Test Crawlora's Papa John's India Stores 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/india/stores?channel_id=1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| channel_id | string | No | 1 | Return only hours for this order channel. One of: 1 (Delivery), 2 (Take Away), 3 (Dine In), 4 (Drive Through Pickup). |
{
"code": 200,
"msg": "OK",
"data": {
"market": "india",
"stores": [
{
"id": "7",
"name": "PJPB - 360° Business Park, Electronics City BLR",
"store_code": "QRyCHD",
"address": "Papa Johns, Electronic City Phase I, Electronic City, Bengaluru, Karnataka 560100",
"phone": "9240244043",
"latitude": 12.840903161072498,
"longitude": 77.65593675511532,
"hours": [
{
"day": "Monday",
"channel_id": "2",
"channel": "Take Away",
"opens": "11:00:00",
"closes": "23:00:59"
}
],
"channels": [
"Dine In",
"Drive Through Pickup",
"Take Away"
]
}
],
"count": 9,
"source_url": "https://papajohns.suntechsolutions.us/api/stores",
"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 every Papa John's **India** restaurant with its address, phone, coordinates, and weekly opening hours broken down per order channel (delivery, take away, dine in, drive-through pickup). These store ids are what GET /papajohns/india/menu's store_id availability filter is keyed on. India market only -- for US/Canada stores use GET /papajohns/directory, GET /papajohns/store, or GET /papajohns/nearby.
{
"code": 200,
"msg": "OK",
"data": {
"market": "india",
"stores": [
{
"id": "7",
"name": "PJPB - 360° Business Park, Electronics City BLR",
"store_code": "QRyCHD",
"address": "Papa Johns, Electronic City Phase I, Electronic City, Bengaluru, Karnataka 560100",
"phone": "9240244043",
"latitude": 12.840903161072498,
"longitude": 77.65593675511532,
"hours": [
{
"day": "Monday",
"channel_id": "2",
"channel": "Take Away",
"opens": "11:00:00",
"closes": "23:00:59"
}
],
"channels": [
"Dine In",
"Drive Through Pickup",
"Take Away"
]
}
],
"count": 9,
"source_url": "https://papajohns.suntechsolutions.us/api/stores",
"fetched_at": "2026-09-05T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/india/stores" \
-H "x-api-key: $CRAWLORA_API_KEY"