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
Parameter | Required | Description |
---|---|---|
asin | Yes | ASIN value |
region | Yes | Marketplace: 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
Parameter | Data Type | Description |
---|---|---|
amazon_title | String | Amazon display type information |
count | Integer | Number of traffic keywords |
per | Float | Proportion of current traffic type |
relation_type | String | Relation type, e.g.: NA |
title | String | Oalur 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®ion=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": ""
}