Endpoint Playground
Test Crawlora's Papa John's India Deal 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/deal?deal_id=<deal_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| deal_id | string | Yes | Deal id from GET /papajohns/india/menu (items with kind=deal) |
{
"code": 200,
"msg": "OK",
"data": {
"market": "india",
"id": "17",
"name": "Sakkath Veg Combo - Dine In",
"description": "Sakkath Combo",
"price": 699,
"price_type": "fixedPrice",
"category_id": "11",
"slots": [
{
"id": "1376",
"quantity": 1,
"optional": false,
"choices": [
{
"item_id": "37",
"name": "BREADSTICKS",
"size": "6 PC",
"category": "Sides"
},
{
"item_id": "71",
"name": "MARGHERITA",
"price": 399,
"size": "Medium",
"size_id": "2",
"category": "Pizzas"
}
],
"choice_count": 5
}
],
"source_url": "https://papajohns.suntechsolutions.us/api/dealdetails/17",
"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 one Papa John's **India** combo or offer with its full composition: each slot in the deal (with its quantity, size, and whether it can be skipped) and every menu item eligible to fill that slot, with each choice's own price in Indian Rupees. This is materially more than the deal row in GET /papajohns/india/menu, which carries only the deal's name, price, and pricing rule. price_type is one of fixedPrice, BuyXGetY, HalfAndHalf, or variablePrice; only fixedPrice deals report a non-zero price. India market only.
{
"code": 200,
"msg": "OK",
"data": {
"market": "india",
"id": "17",
"name": "Sakkath Veg Combo - Dine In",
"description": "Sakkath Combo",
"price": 699,
"price_type": "fixedPrice",
"category_id": "11",
"slots": [
{
"id": "1376",
"quantity": 1,
"optional": false,
"choices": [
{
"item_id": "37",
"name": "BREADSTICKS",
"size": "6 PC",
"category": "Sides"
},
{
"item_id": "71",
"name": "MARGHERITA",
"price": 399,
"size": "Medium",
"size_id": "2",
"category": "Pizzas"
}
],
"choice_count": 5
}
],
"source_url": "https://papajohns.suntechsolutions.us/api/dealdetails/17",
"fetched_at": "2026-09-05T09:00:00Z"
}
}curl "https://api.crawlora.net/api/v1/papajohns/india/deal?deal_id=<deal_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"