| Http Method | POST |
|---|---|
| Http Request URL | https://api.sellersprite.com/v1/review |
| # | 参数 | 参数类型 | 是否必填 | 参数名称 | 参数描述 |
| 1 | marketplace | String | ✓ | 市场 | 见表 1.2 |
| 2 | asin | String | ✓ | ASIN | |
| 3 | page | Integer | 页码,从 1 开始 | 默认:1 | |
| 4 | size | Integer | 每页条数,最大10 | 默认:5 |
| # | 参数 | 参数类型 | 参数名称 | 参数描述 |
| 1 | author | String | 用户 | |
| 2 | title | String | 标题 | |
| 3 | content | String | 评论内容 | |
| 4 | date | Long | 日期(时间戳) | 1772380800000 |
| 5 | star | Integer | 星级 |
curl --location --request POST 'https://api.sellersprite.com/v1/review' \
--header 'secret-key: Your Secret' \
--header 'Content-Type: application/json' \
--data-raw '{
"marketplace": "US",
"asin": "B0D3LGT8M3",
"size": 2
}'