sevennow_category
Browse a 7NOW store's category by subcategory, returning each group's priced items and live availability. Uses store and category IDs to get structured catalog data.
Instructions
Browse one 7NOW store's category by subcategory. 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.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Pagination offset, applied uniformly to every subcategory group. Defaults to 0. | |
| limit | No | Max items returned per subcategory group, 1-50. Defaults to 20. | |
| store_id | Yes | 7NOW store id, from GET /7now/stores. | |
| category_id | Yes | Category id, from GET /7now/categories -- either a department or a merchandising shelf. | |
| subcategory | No | Restrict to one subcategory group by exact name (from a prior call's subcategories[].name). |