get_category_children
Drill down Amazon category tree from any parent node to list direct subcategories. Helps navigate to the right category level for product listing or analysis.
Instructions
[Amazon 类目树下钻] 从根节点或任意类目逐级下钻,列出直接子类目。 Use when: 用户说"看一下 Amazon 类目树""X 类目下有什么子类""列出顶级大类""下钻到三级类目";做类目地图时;search_categories 给了多个候选类目想看哪个层级合适。 Don't use: 想按关键词跳到类目(用 search_categories 更快);想要类目下的商品列表而非子类目(用 list_category_products)。 Returns: data.items.data[{ browseNodeId, browseNodeIdPath, browseNodeName, browseNodeNameCn, parentBrowseNodeIdPath, productType, sellable, hasChild }] + data.items.pagination.{ total, page, size, hasNext };留空 parentBrowseNodeIdPath 返回顶级根节点;hasChild=1 说明可继续下钻。翻页: 用 page 参数(默认 1,size 默认 10、上限 50);pagination.hasNext=true 表示该层子类目还没列完。 Pair with: ↑ 起点 parentBrowseNodeIdPath 可留空(顶级)或来自 search_categories;↓ 每条结果的 browseNodeIdPath 可喂回本工具再下钻一层,或喂 list_category_products / filter_categories。 Cost: ~1 积点/页, ~3s。翻页只在某节点子类目特别多(>size)且用户要"看全部子类"时才做。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parentBrowseNodeIdPath | No | 父节点路径。可填单个 browseNodeId 或斜杠分隔的完整路径。Examples: '2619526011' (Appliances, 顶级下钻) / '2619526011/18116197011' (Appliances > Ranges/Ovens/Cooktops, 三级下钻)。留空则返回顶级根节点。 | |
| page | No | 页码,从 1 开始。 | |
| size | No | 每页条数。 |