list_seller_products
List all products from an Amazon seller by merchant ID. Paginated results include ASIN, title, price, and ratings for competitive analysis.
Instructions
[Amazon 卖家店铺铺货] 列出某 merchant ID 名下的全部上架商品,分页(每页 24 条)。 Use when: 用户说"看一下这个卖家有哪些产品""X 店铺铺了多少 SKU""竞品店铺品类宽度""跟卖卖家在卖什么""店铺铺货策略调研"。 Don't use: 不知道 merchant ID 时(先去某商品 PDP 里找 'sold by' 链接拿 ID);只看单品(用 get_amazon_product)。 Returns: data.json[0].data.{ pageIndex, maxPage, nextPage, results[{ asin, title, price, star, rating, rank, img }] } —— 每页 24 条。翻页: 用 page 参数(默认 1,从 1 开始);nextPage 为下一页页码,nextPage=null 或 page>=maxPage 表示到底。 Pair with: ↑ sellerId 通常从 get_amazon_product 的 seller.id 字段拿到,或用户从 amazon.com/sp?seller=... URL 里读到;↓ 把 asin 喂 get_amazon_product 拆主推品。 Cost: ~1 积点/页, ~5s。 Tips: 跟卖矩阵分析需要全 SKU 时才翻 2-3 页;单纯看一下店铺有什么货首页就够。Amazon 自营 sellerId = 'ATVPDKIKX0DER'。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sellerId | Yes | Amazon 卖家 ID(merchant ID,14 位字母数字)。Examples: 'ATVPDKIKX0DER'(Amazon 自营)/ 'A2L77EE7U53NWQ'(Amazon Warehouse)。从商品页 'sold by' 链接或 amazon.com/sp?seller=... URL 里读取。 | |
| site | No | Amazon 站点。默认 amz_us。 | amz_us |
| zipcode | No | 邮编,必须匹配 site 站点所在国家(amz_us → 美国邮编,amz_jp → 日本邮编 …)。可选;不传时后端会从对应国家邮编池随机挑一个。跨国邮编(如 amz_us + 日本邮编)会被后端拒绝。Examples: 10001 (NY) / 90001 (LA) / 100-0001 (Tokyo). | |
| format | No | 返回格式。默认 'json'——结构化卖家商品列表。需要原始页面阅读时切 'markdown'。 | json |
| page | No | 页码,从 1 开始。每页 24 条。结合响应里的 pageIndex/maxPage/nextPage 决定是否继续:nextPage 为下一页页码,nextPage=null 或 page>=maxPage 表示到底。**只在用户明确要更多/全部 SKU 时才翻**,否则首页够用。 |