是否有 Amazon.com API 来检索 Amazon 关键字量数据

问题描述 投票:0回答:2

大家好,我正在寻找一个可用于从亚马逊提取关键字数量的亚马逊 API?有API可用吗?

该网站也在做同样的事情,但不确定他们将使用哪些服务或 API:https://www.merchantwords.com/

amazon-web-services
2个回答
2
投票

由于亚马逊没有公布这些数字,我猜这只是应用统计数据,基于搜索/亚马逊排名点击分布以及产品亚马逊排名波动的方式。


0
投票

Jungle Scout 有一个 API

/api/keywords/historical_search_volume
,可以根据数据参数以 7 天的增量返回确切关键字的搜索量。

这是一个示例请求:

curl --location 'https://developer.junglescout.com/api/keywords/historical_search_volume?marketplace=us&keyword=sushi&start_date=2023-05-05&end_date=2023-05-11'
--header 'X_API_Type:junglescout'
--header '接受:application/vnd.junglescout.v1+json'
--header '内容类型:application/vnd.api+json'

示例响应:

{
  "data": [
    {
      "id": "us/sushi/2019-05-05/2019-05-11",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-05-05",
        "estimate_end_date": "2019-05-11",
        "estimated_exact_search_volume": 3158
      }
    },
    {
      "id": "us/sushi/2019-05-12/2019-05-18",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-05-12",
        "estimate_end_date": "2019-05-18",
        "estimated_exact_search_volume": 2991
      }
    },
    {
      "id": "us/sushi/2019-05-19/2019-05-25",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-05-19",
        "estimate_end_date": "2019-05-25",
        "estimated_exact_search_volume": 2700
      }
    },
    {
      "id": "us/sushi/2019-05-26/2019-06-01",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-05-26",
        "estimate_end_date": "2019-06-01",
        "estimated_exact_search_volume": 2759
      }
    },
    {
      "id": "us/sushi/2019-06-02/2019-06-08",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-06-02",
        "estimate_end_date": "2019-06-08",
        "estimated_exact_search_volume": 2719
      }
    },
    {
      "id": "us/sushi/2019-06-09/2019-06-15",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-06-09",
        "estimate_end_date": "2019-06-15",
        "estimated_exact_search_volume": 3327
      }
    },
    {
      "id": "us/sushi/2019-06-16/2019-06-22",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-06-16",
        "estimate_end_date": "2019-06-22",
        "estimated_exact_search_volume": 2389
      }
    },
    {
      "id": "us/sushi/2019-06-23/2019-06-29",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-06-23",
        "estimate_end_date": "2019-06-29",
        "estimated_exact_search_volume": 2432
      }
    },
    {
      "id": "us/sushi/2019-06-30/2019-07-06",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-06-30",
        "estimate_end_date": "2019-07-06",
        "estimated_exact_search_volume": 2431
      }
    },
    {
      "id": "us/sushi/2019-07-07/2019-07-13",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-07-07",
        "estimate_end_date": "2019-07-13",
        "estimated_exact_search_volume": 2297
      }
    },
    {
      "id": "us/sushi/2019-07-14/2019-07-20",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-07-14",
        "estimate_end_date": "2019-07-20",
        "estimated_exact_search_volume": 2662
      }
    },
    {
      "id": "us/sushi/2019-07-21/2019-07-27",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-07-21",
        "estimate_end_date": "2019-07-27",
        "estimated_exact_search_volume": 2128
      }
    },
    {
      "id": "us/sushi/2019-07-28/2019-08-03",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-07-28",
        "estimate_end_date": "2019-08-03",
        "estimated_exact_search_volume": 2342
      }
    },
    {
      "id": "us/sushi/2019-08-04/2019-08-10",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-08-04",
        "estimate_end_date": "2019-08-10",
        "estimated_exact_search_volume": 2141
      }
    },
    {
      "id": "us/sushi/2019-08-11/2019-08-17",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-08-11",
        "estimate_end_date": "2019-08-17",
        "estimated_exact_search_volume": 2030
      }
    },
    {
      "id": "us/sushi/2019-08-18/2019-08-24",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-08-18",
        "estimate_end_date": "2019-08-24",
        "estimated_exact_search_volume": 1972
      }
    },
    {
      "id": "us/sushi/2019-08-25/2019-08-31",
      "type": "historical_keyword_search_volume",
      "attributes": {
        "estimate_start_date": "2019-08-25",
        "estimate_end_date": "2019-08-31",
        "estimated_exact_search_volume": 1601
      }
    }
  ]
}

© www.soinside.com 2019 - 2024. All rights reserved.