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

      Create Amazon VOC report

      POST
      /voc/reports
      Create VOC report by one or multiple ASINs

      Request

      Header Params
      X-Token
      string 
      required
      API Key
      Example:
      42e9fb1c94c842cd9495c812a4c8fe05
      Body Params application/json
      countryCode
      enum<string> 
      required
      Amazon site name, optional values: US, UK, DE, FR, IT, CA, ES, JP
      Allowed values:
      USUKDEFRITCAESJP
      Example:
      US
      asins
      array[string]
      required
      Amazon ASIN list
      <= 100 items
      Example
      {
          "countryCode": "US",
          "asins": [
              "string"
          ]
      }

      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/reports' \
      --header 'X-Token: 42e9fb1c94c842cd9495c812a4c8fe05' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "countryCode": "US",
          "asins": [
              "string"
          ]
      }'

      Responses

      🟢200OK
      application/json
      Body
      code
      integer 
      required
      result code
      Example:
      0
      msg
      string 
      optional
      error message
      data
      object 
      optional
      VOC report id
      reportId
      string 
      required
      Examples
      {
          "code": 0,
          "data": {
              "reportId": "12342"
          }
      }
      Previous
      Get Amazon product review information
      Next
      Get Amazon VOC report result
      Built with