search_categories
Search Amazon categories by keyword to retrieve matching nodes with browseNodeIds for ad tracking and product analysis.
Instructions
[Amazon 类目搜索] 用关键词(中英文均可)匹配 Amazon 类目树,返回候选类目节点。 Use when: 用户给的是关键词而非类目 ID,下游需要 categoryId / browseNodeId(如想跑 filter_niches / filter_categories / list_category_products / list_bestsellers slug 推测);想知道某个商品概念在 Amazon 类目体系里挂在哪。 Don't use: 已经有 categoryId/nodeId(直接用 get_category_paths 取面包屑或下游 filter);想树状下钻看子类目(用 get_category_children)。 Returns: data.items.data[{ browseNodeId, browseNodeIdPath, browseNodeName, browseNodeNameCn, browseNodeNamePath, browseNodeNamePathCn, parentBrowseNodeIdPath, productType, sellable, hasChild }] + pagination。 Pair with: ↓ 拿到 browseNodeId 后喂 list_category_products / list_bestsellers (用 path 推 slug) / filter_niches / filter_categories;↓ 喂 get_category_children 继续下钻;↓ 喂 get_category_paths 取面包屑。 Cost: ~1 积点/次, ~3s。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keyword | Yes | 类目名称关键词(中英文均可)。Examples: 'headphones' / 'kitchen knives' / '无线耳机' / 'wireless earbuds'。 | |
| site | No | 搜索的 Amazon 站点。默认 amz_us(美国站)。 | amz_us |