评论分析API
    评论分析API
    • 获取Amazon商品的评论信息
      GET
    • 批量对商品评论信息打标
      POST
    • 获取Amazon商品评论分析结果
      GET

      获取Amazon商品的评论信息

      开发中
      GET
      /voc/{asin}/reviews
      获取Amazon商品的评论信息

      请求参数

      Path 参数
      asin
      string 
      必需
      Amazon商品ASIN
      示例值:
      B07ZF8T63K
      Query 参数
      countryCode
      string 
      必需
      亚马逊站点名称,可选值:US、UK、DE、FR、IT、CA、ES、JP
      示例值:
      US
      includeVariants
      string 
      可选
      是否包含所有变体数据,默认值为false
      示例值:
      true
      startDate
      string 
      可选
      评论开始日期,格式yyyy-MM-dd,不传默认查询全部评论
      示例值:
      2023-09-30
      pageNo
      integer 
      可选
      当前分页编号,默认值为1
      示例值:
      1
      pageSize
      integer 
      可选
      每页获取的评论数,默认值为50,最大值支持100
      示例值:
      50

      示例代码

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      请求示例请求示例
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET '/voc/B07ZF8T63K/reviews?countryCode=US&includeVariants=true&startDate=2023-09-30&pageNo=1&pageSize=50'

      返回响应

      🟢200成功
      application/json
      Body
      code
      string 
      状态码
      必需
      msg
      string 
      错误信息
      可选
      data
      object 
      数据结果
      可选
      total
      integer 
      总评论数
      必需
      pageNo
      integer 
      当前分页
      必需
      pageSize
      integer 
      分页大小
      必需
      list
      array [object {17}] 
      评论列表
      可选
      示例
      {
          "code": 200,
          "msg": "success",
          "data": {
              "total": 22940,
              "list": [
                  {
                      "sku": "Style: 12 Inch|Pattern: Mattress Only|Size: Queen",
                      "asin": "B00Q7EPSHI",
                      "title": "So far so good. ****Updated Review after a month or more of use",
                      "content": "I ordered this item on 1-27-2018 it arrived on 1-29-2018 with my prime membership. I opened and laid it out on top of a guest room bed to inflate. In 4 hours it appeared to be fully inflated. However packing info says wait 24-48 hours before using to allow proper time to inflate. I did however break down and climb on to see how it feels. I am on a pillow top mattress currently that is roughly 6-8 years old and has been causing me a lot of pain in my shoulder and hip as I am a side sleeper. Just laying on this bed for a few minutes its much firmer than my current bed, and so very comfortable. I will leave a more through review once I have actually slept in it for a few nights. I can say I am very excited. I plan to put it on my current box springs, and we will see how it goes. I was a bit disappointed to realize you cant flip the mattress only rotate it, which is what I have currently with my terrible pillow top . and I like to flip my mattresses every month. I will also state that when I unrolled it I was really worried about it forming its natural state as it had a lot of weird lumps from packing, but it has formed to a normal mattress already on a cursory view of it on my way out the door today. I will better inspect it when moving it to my actual bed.<br><br> Update!! I have been sleeping on this mattress for about a week now.  I will say one night I did get very warm, however I don't think it was my mattress I tend to run hot and cold and occasionally has the same issue with my old pillow top. This mattress is shockingly firm when you first sit or lay on it you think oh Hell No! But within second the memory foam begins to contour to your body and it's very comfortable. I am a side sleeper and was having alot of hip pain with my old mattress. While my pain isn't gone it's much better, and I think it will go away given more time with this new bed. My review is definitely a positive one. For 179$ and arriving in 2 days I'm very pleased. Included are 3 photos the last photo shows me sitting on the edge of the bed showing how much it goes down with my weight, and that I don't know why people say you can't sit on the sides I can't sit on any side any corner no issues... and even with my weight it springs right back to shape once I move or get up, it also still provides comfort and support this bed is rated up to 500lbs! Which thankfully I am not!<br><br>********* Updated Review***********<br><br>I have been sleeping on this bed for over a month now, and wanted to update my thoughts. My hip and shoulder were in ALOT of pain when I bought my new mattress. I couldn't barely walk around during the day from the pain, now I am fully recovered and I credit my bed for this. If you are on a budget and cant spend 500-1000$ on a new mattress I greatly recommend this item.<br>If you are plus sized and worried about it don't be this bed is tested for 500lbs and as a big girl myself I sleep amazing on it with my HUGE dog and cat. I feel more rested and relaxed waking than I have in at least 5 years.",
                      "star": 4,
                      "purchased": 1,
                      "earlyReviewer": 0,
                      "reviewLink": "https://www.amazon.com/gp/customer-reviews/RP2N0CP5KPICN/ref=cm_cr_arp_d_rvw_ttl?ie=UTF8&ASIN=B00Q7EPSHI",
                      "authLink": "https://www.amazon.com/gp/profile/amzn1.account.AFABZ3A56NUEJPCZBIS5PLNBFICA/ref=cm_cr_getr_d_gw_btm?ie=UTF8",
                      "productLink": "https://www.amazon.com/dp/B00Q7EPSHI",
                      "authorName": "Chrystal",
                      "avatarUrl": "https://images-na.ssl-images-amazon.com/images/S/amazon-avatars/default._CR0,0,1024,1024_SX48_.png",
                      "helpfulNum": 6624,
                      "reviewDate": "2018-01-30",
                      "reviewId": "RP2N0CP5KPICN",
                      "reviewImgs": [
                          "https://images-na.ssl-images-amazon.com/images/I/61FLEOOtzxL._SY200.jpg",
                          "https://images-na.ssl-images-amazon.com/images/I/71CB+WC7AJL._SY200.jpg",
                          "https://images-na.ssl-images-amazon.com/images/I/71PhnAIxcyL._SY200.jpg"
                      ],
                      "reviewVideos": null
                  }
              ],
              "pageNo": 1,
              "pageSize": 10
          }
      }
      下一页
      批量对商品评论信息打标
      Built with