Shulex VOC API English Version
    Shulex VOC API English Version
    • Submit Amazon product review information Task
      POST
    • Get Amazon product review information
      GET
    • Create Amazon VOC report
      POST
    • Get Amazon VOC report result
      GET
    • Create custom VOC report
      POST
    • Get custom VOC report result
      GET

      Submit Amazon product review information Task

      Developing
      POST
      /voc/{asin}/reviews
      Submit the task of getting Amazon product review information

      Request

      Path Params
      asin
      string 
      required
      Amazon product ASIN
      Example:
      B07ZF8T63K
      Header Params
      X-Token
      string 
      required
      API Key
      Example:
      42e9fb1c94c842cd9495c812a4c8fe05
      Body Params application/json
      countryCode
      enum<string> 
      required
      亚马逊站点
      Allowed values:
      USUKDEFRITCAESJP
      Example:
      US
      Example
      {
          "countryCode": "US"
      }

      Request samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://apps.voc.ai/api_v2/datahub//voc/B07ZF8T63K/reviews' \
      --header 'X-Token: 42e9fb1c94c842cd9495c812a4c8fe05' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "countryCode": "US"
      }'

      Responses

      🟢200成功
      application/json
      Body
      code
      integer 
      required
      Result code
      msg
      string 
      optional
      Error message
      data
      object 
      optional
      Result data
      finish
      boolean 
      required
      Review available
      Example
      {
          "code": 200,
          "msg": "success",
          "data": {
              "finish": false
          }
      }
      Next
      Get Amazon product review information
      Built with