キーワード データ推定 API

APIエンドポイント仕様

  • エンドポイント パス: /api/3/kwMediaCost
  • データの種類: JSON と 10/分
  • 情報元: Google, Bing, アマゾン
  • リクエスト制限: 500リクエスト/月
  • スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
キーワード データ推定 API エンドポイントの基本情報

APIエンドポイントパス

必須

キーワード データ推定 API

api/3/kwMediaCost


Call Method

Required

GET

返されるデータの種類

JSON

キーワードボリュームとクリック単価に関する構造化された JSON データを出力します.


利用可能な API 引数とパラメータ

token

必須

BUYFROMLO API トークンを購入します. 有料サブスクリプション API が利用可能です: /api/3/kwMediaCost, オンサイト APP からアクセス可能/app/3/keywordestimator にもあります

keyword

必須

キーワードを入力してください

country

必須

US, JPなどのショートコードを使用してターゲット市場に参入します

searchengine

必須

google, bing, amazonなどの対象の検索エンジンを入力します. 現在利用できるのは Google キーワード データのみです. テスト目的で Bing や Amazon にアクセスしたい場合は, お問い合わせください.

language

必須

言語の ISO ショートコードを入力します. デフォルトはENです

typeofKWresponse

必須

応答のタイプを選択します: オプション:keyword_dataset, kwwithaianalysis



キーワード データ推定 API

api/3/kwMediaCost


コードの統合と対応

Python コードサンプル


import requests

## Required components ##

token = "your buyfromlo token"
apiendpoint = "https://api.buyfromlo.com/api/3/kwMediaCost?"
keyword = "target product keyword"
searchengine = "target channel"
country = "target country"
language = "target language"
typeofKWresponse=""

## Call the api ##
data="keyword=" + keyword + "&country=" + country + "&searchengine=" + searchengine + "&language=" + language + "&typeofKWresponse=" + typeofKWresponse
headers={"Authorization": "Bearer " + token}

response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
                        

JSON 応答サンプル


{
    "Root keyword": " " (string),
    "Keyword Ideas": " " (string),
    "Avg Monthlyl Searches": " "(integer),
    "Competition Level": " " (string),
    "Competition Index": " " (string),
    "Lowest CPC US$": " " (float),
    "Highest CPC US$": " " (float),
}