Endpoint Playground
Test Crawlora's 7NOW Category 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/category?store_id=<store_id>&category_id=<category_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. | |
| category_id | string | Yes | Category id, from GET /7now/categories -- either a department or a merchandising shelf. | |
| subcategory | string | No | Restrict to one subcategory group by exact name (from a prior call's subcategories[].name). | |
| skip | integer | No | Pagination offset, applied uniformly to every subcategory group. Defaults to 0. | |
| limit | integer | No | Max items returned per subcategory group, 1-50. Defaults to 20. |
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "37134",
"category_id": "48423",
"subcategories": [
{
"name": "Pizza",
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"subcategory": "Pizza",
"upc": "00052548537524",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"price_cents": 1299,
"promo_price_cents": 699,
"promo_description": "On Sale $6.99",
"available": true,
"available_quantity": 100,
"age_restricted": false
}
]
}
],
"stats": {
"total": 121,
"available": 99,
"out_of_stock": 22,
"percentage_available": 82
},
"skip": 0,
"limit": 20,
"source_url": "https://www.7now.com/api/bff/unified-catalog/v1/conv/inventory/subcategories?storeId=37134&categoryId=48423&skip=0&limit=20",
"fetched_at": "2026-09-05T19: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.
Returns one 7NOW store's top-level category broken into its real subcategory groups (e.g. Fresh Food -> Pizza, Wings & Chicken Bites, Subs & Sandwiches, ...), each with its own paginated, priced item list and live availability, plus a category-wide availability summary. Complements GET /7now/catalog, whose per-category section is a single flat list -- this is the same data organized the way 7now.com's own category page groups it. store_id comes from GET /7now/stores and category_id from GET /7now/categories -- which accepts both the store's permanent departments and the merchandising shelves its homepage features, since 7NOW uses one parameter for two id spaces. An invalid or empty category_id returns a normal 200 with an empty subcategories array, not an error.
{
"code": 200,
"msg": "OK",
"data": {
"store_id": "37134",
"category_id": "48423",
"subcategories": [
{
"name": "Pizza",
"items": [
{
"product_id": "178322-2-6-2",
"name": "Large Pizza - Ultimate Pepperoni",
"subcategory": "Pizza",
"upc": "00052548537524",
"calories": "360",
"image_url": "https://deuktbth81ifn.cloudfront.net/7now/US/178322-2-6-2/wghjlebnc3luzvgqmpvz.jpg",
"price_cents": 1299,
"promo_price_cents": 699,
"promo_description": "On Sale $6.99",
"available": true,
"available_quantity": 100,
"age_restricted": false
}
]
}
],
"stats": {
"total": 121,
"available": 99,
"out_of_stock": 22,
"percentage_available": 82
},
"skip": 0,
"limit": 20,
"source_url": "https://www.7now.com/api/bff/unified-catalog/v1/conv/inventory/subcategories?storeId=37134&categoryId=48423&skip=0&limit=20",
"fetched_at": "2026-09-05T19:40:00Z"
}
}curl "https://api.crawlora.net/api/v1/7now/category?store_id=<store_id>&category_id=<category_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"