获取亚马逊商品的评论和标签
开发中GET
/voc/reviews/includeTag获取亚马逊商品的评论信息。获取评论信息之前,请先“提交亚马逊商品评论获取任务”。
请求参数
Query 参数
reportId
integer
报告ID
示例值:
123131
asin
string
亚马逊商品ID
示例值:
B08QZFQMRN
countryCode
string
可选
亚马逊站点名称,可选值为:US, UK, DE, FR, IT, CA, ES, JP
示例值:
US
includeVariants
string
可选
是否包含变体的评论信息,默认为true
示例值:
true
startDate
string
可选
评论的开始时间,格式为yyyy-MM-dd,不填开始时间代表获取所有评论信息
示例值:
2023-09-30
pageNo
integer
当前页码,默认为1
示例值:
1
pageSize
integer
可选
每页返回多少条评论,默认值为50,最大值为50
示例值:
50
orderBy
string
可选
返回的评论的排序字段,目前只支持传‘reviewDate’,按评论时间排序,默认值为‘reviewDate’
示例值:
reviewDate
orderType
string
可选
返回的评论的排序方式,desc为倒序,asc为正序,默认为倒序
示例值:
desc
Header 参数
X-Token
string
API Key
示例值:
b018aed03aea4c6e8dcfbd1fb3918797
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
结果码
msg
string
错误信息
data
object
结果数据
finish
boolean
获取评论是否完成
total
integer
总评论数
pageNo
integer
当前页码
pageSize
integer
每页数据大小
list
array [object {21}]
评论列表
示例
{
"code": 200,
"msg": "success",
"data": {
"finish": true,
"total": 22940,
"list": [
{
"asin": "B08QZFQMRN",
"authLink": "https://www.amazon.com/gp/profile/amzn1.account.AEHR3JCP2BRGBL6RG7IQJVJU5AAA/ref=cm_cr_arp_d_gw_btm?ie=UTF8",
"authorName": "Patrick Crowley REALTOR",
"avatarUrl": "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/grey-pixel.gif",
"content": "Update caused a fire🔥Doesn’t work for finger if touch, if it’s plugged in and it doesn’t charge as well apples. Also the wire has already split at the base where it touches the phone definitely not worth the money I’d rather pay more for real",
"earlyReviewer": false,
"helpfulNum": 0,
"images": [
"https://images-na.ssl-images-amazon.com/images/I/A14oW12zMtL._SL500_SR200,200_.jpg"
],
"likesCount": 0,
"market": "US",
"productLink": "https://www.amazon.com/dp/B08QZFQMRN",
"purchased": true,
"reviewDate": 1630540800000,
"reviewId": "RTRV9C6DBHZTB",
"reviewImgs": "[\"https://images-na.ssl-images-amazon.com/images/I/A14oW12zMtL._SL500_SR200,200_.jpg\"]",
"reviewLink": "https://www.amazon.com/gp/customer-reviews/RTRV9C6DBHZTB",
"reviewVideos": "[]",
"sku": "Size:null|Color:null",
"star": 1,
"title": "Cord broke on both & metal tip off & where the wire was exposed exposed started a small pillow fire",
"videos": [],
"tags": {
"generalTags": [
{
"tag": "Customer Service",
"sentiment": 0,
"tagCategory": "好评"
}
],
"customTags": [
{
"opinion": "xxxxx",
"sentiment": 0
}
]
}
}
],
"pageNo": 1,
"pageSize": 10
}
}
最后修改时间: 8 个月前