Endpoint Playground
Test Crawlora's 7NOW Combo 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/7now/combo?promo_id=<promo_id>&store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| promo_id | string | Yes | Promotion id, from GET /7now/combos' combos[].promo_id. | |
| store_id | string | Yes | 7NOW store id, from GET /7now/stores. |
{
"code": 200,
"msg": "OK",
"data": {
"promo_id": "6a849a8fa1df2409010c719f",
"store_id": "39640",
"terms": {
"title": "$6.99 Pizza",
"description": "Any Whole Pizza $6.99 each",
"legal_terms": "Item must be added to cart for discount to apply. Limit 10 offers per order."
},
"groups": [
{
"name": "Eligible Whole Pizzas",
"is_primary": true,
"quantity": 1,
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"brand": "Hot Food Pizza",
"category": "Fresh Food",
"category_id": "48423",
"subcategory": "Pizza",
"upc": "00052548537524",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"price_cents": 1099,
"promos": [],
"available": true,
"available_quantity": 56,
"age_restricted": false
}
]
}
],
"count": 1,
"source_url": "https://www.7now.com/api/bff/unified-catalog/v1/content/promo/combo?promoId=6a849a8fa1df2409010c719f&storeId=39640",
"fetched_at": "2026-09-06T04:40: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.
Expands one bundle deal into its structure: each pick-from group's name, how many items the shopper picks from it, and every eligible item with live pricing and availability -- e.g. the "$6.99 Pizza" bundle returns one group, "Eligible Whole Pizzas", holding six priced pizzas. Also returns the bundle's shopper-facing headline and full legal terms. promo_id comes from GET /7now/combos' combos[].promo_id, and store_id from GET /7now/stores. The upstream also accepts a plain item-discount promotion id but answers one with unnamed groups -- for those, GET /7now/promotion's flat item list is the right endpoint. An unknown promo_id returns 404.
{
"code": 200,
"msg": "OK",
"data": {
"promo_id": "6a849a8fa1df2409010c719f",
"store_id": "39640",
"terms": {
"title": "$6.99 Pizza",
"description": "Any Whole Pizza $6.99 each",
"legal_terms": "Item must be added to cart for discount to apply. Limit 10 offers per order."
},
"groups": [
{
"name": "Eligible Whole Pizzas",
"is_primary": true,
"quantity": 1,
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"brand": "Hot Food Pizza",
"category": "Fresh Food",
"category_id": "48423",
"subcategory": "Pizza",
"upc": "00052548537524",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"price_cents": 1099,
"promos": [],
"available": true,
"available_quantity": 56,
"age_restricted": false
}
]
}
],
"count": 1,
"source_url": "https://www.7now.com/api/bff/unified-catalog/v1/content/promo/combo?promoId=6a849a8fa1df2409010c719f&storeId=39640",
"fetched_at": "2026-09-06T04:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/7now/combo?promo_id=<promo_id>&store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"