Traffic Distribution Statistics

Interface Information

Description: Keyword mining - monthly keyword query, mainly for specific keyword queries. Pagination is required, with each page currently supporting 100 items. Maximum pagination is 100 pages.
Request URI:

GET /v2/oalur/v1/asin-keywords/statistic
Request Parameters
ParameterRequiredDescription
asinYesASIN value
regionYesMarketplace: US-United States, DE-Germany, JP-Japan, UK-United Kingdom
Response Parameters

TIP

Pagination query, the interface return value will also return the total amount of data, please see the example for details

ParameterData TypeDescription
amazon_titleStringAmazon display type information
countIntegerNumber of traffic keywords
perFloatProportion of current traffic type
relation_typeStringRelation type, e.g.: NA
titleStringOalur display traffic type, e.g.: Natural traffic keywords

Example

curl --location --request GET \
'https://gw.oalur.com/v2/oalur/v1/asin-keywords/statistic?asin=B00BWF5U0M&region=US \
--header 'Authorization: bearer {token}'

Response

{
  "code": 0,
  "data": [
    {
      "amazon_title": "Natural traffic keywords",
      "count": 128,
      "per": 88.89,
      "relation_type": "NA",
      "title": "Natural traffic keywords"
    },
    {
      "amazon_title": "Editorial recommendations",
      "count": 2,
      "per": 1.39,
      "relation_type": "ER",
      "title": "ER recommended keywords"
    },
    {
      "amazon_title": "Highly Rated",
      "count": 1,
      "per": 0.69,
      "relation_type": "HR",
      "title": "HR recommended keywords"
    },
    {
      "amazon_title": "Sponsored",
      "count": 12,
      "per": 8.33,
      "relation_type": "SP",
      "title": "SP advertising keywords"
    },
    {
      "amazon_title": "Video Sponsored",
      "count": 1,
      "per": 0.69,
      "relation_type": "VSP",
      "title": "Video advertising keywords"
    }
  ],
  "message": ""
}