Endpoint Playground
Test Crawlora's 7NOW Catalog 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/catalog?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| store_id | string | Yes | 7NOW store id, from GET /7now/stores. | |
| lat | number | No | Accepted but inert -- store_id alone selects the store; responses are byte-identical with any value or none. Forwarded upstream for fidelity with 7now.com's own client. | |
| lon | number | No | Accepted but inert -- see lat. | |
| skip | integer | No | Pagination offset, applied uniformly to every catalog section. Defaults to 0. | |
| limit | integer | No | Max items returned per catalog section, 1-50. Defaults to 20. |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "39226",
"categories": [
{
"id": "48423",
"name": "Fresh Food"
},
{
"id": "48395",
"name": "Drinks"
}
],
"sections": [
{
"section_id": "bestsellers",
"display_order": 2,
"total": 200,
"count": 20,
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"category": "Fresh Food",
"subcategory": "Pizza",
"brand": "Hot Food Pizza",
"flavor_name": "Pepperoni Pizza",
"upc": "00072180687340",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"original_price_cents": 1099,
"promo_price_cents": 699,
"promo_description": "On Sale $6.99",
"age_restricted": false
}
]
}
],
"active_items": 2664,
"out_of_stock_items": 435,
"skip": 0,
"limit": 20,
"source_url": "https://www.7now.com/api/bff/unified-catalog/v1/content/homepage?...",
"fetched_at": "2026-09-05T19:25:40Z"
}
}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 7NOW store's browsable category list, a paginated item listing per catalog section (each with real per-item pricing, active promotions, calories, UPC and image), and a live active/out-of-stock inventory count for that store. store_id comes from GET /7now/stores; lat and lon are accepted but inert (store_id alone selects the store). The catalog is genuinely store-scoped, not a national price list. skip/limit page every item section uniformly (limit is capped at 50, defaults to 20).
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "39226",
"categories": [
{
"id": "48423",
"name": "Fresh Food"
},
{
"id": "48395",
"name": "Drinks"
}
],
"sections": [
{
"section_id": "bestsellers",
"display_order": 2,
"total": 200,
"count": 20,
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"category": "Fresh Food",
"subcategory": "Pizza",
"brand": "Hot Food Pizza",
"flavor_name": "Pepperoni Pizza",
"upc": "00072180687340",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"original_price_cents": 1099,
"promo_price_cents": 699,
"promo_description": "On Sale $6.99",
"age_restricted": false
}
]
}
],
"active_items": 2664,
"out_of_stock_items": 435,
"skip": 0,
"limit": 20,
"source_url": "https://www.7now.com/api/bff/unified-catalog/v1/content/homepage?...",
"fetched_at": "2026-09-05T19:25:40Z"
}
}curl "https://api.crawlora.net/api/v1/7now/catalog?store_id=<store_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"