| Http Method | POST |
|---|---|
| Http Request URL | https://api.sellersprite.com/v1/market/seller/type |
| # | 参数 | 参数类型 | 是否必填 | 参数名称 | 参数描述 |
| 1 | marketplace | String | ✓ | 站点编码 | 见表 1.2 |
| 2 | month | String | 筛选日期,默认最近30天 | 见表 1.1 | |
| 3 | topN | Integer | 头部Listing数量 | 10 | |
| 4 | newProduct | Integer | 新品定义 | 6 | |
| 5 | nodeIdPath | String | ✓ | 节点 id 路径字符串 | 1064954:1069242:1069784:1069820:1069838:1069828 |
| # | 参数 | 参数类型 | 参数名称 | 参数描述 |
| 1 | label | String | 类型说明 | Amazon自营 |
| 2 | asinNum | Integer | ASIN数量 | 4 |
| 3 | asinRatio | Float | ASIN数量占比 | 0.03 |
| 4 | units | Integer | 月销量 | 79875 |
| 5 | unitsRatio | Float | 月销量占比 | 0.0345 |
| 6 | ratings | Integer | 评分数 | 6607 |
| 7 | rating | Float | 评分值 | 4.7 |
| 8 | productNum | Integer | 商品总数 | 3 |
curl --location --request POST 'https://api.sellersprite.com/v1/market/seller/type' \
--header 'secret-key: Your Secret' \
--header 'Content-Type: application/json' \
--data-raw '{
"marketplace": "US",
"nodeIdPath":"172282:281407"
}'
{
"code": "OK",
"message": "成功",
"data": [
{
"label": "FBA",
"asinNum": 10,
"asinRatio": 1.0,
"units": 4449,
"unitsRatio": 1.0,
"ratings": 455,
"rating": 4.3,
"productNum": 10
}
]
}