Google トレンド データ ジェネレーター API

APIエンドポイント仕様

  • エンドポイント パス: /api/1/googleTrendV2
  • データの種類: JSON と 10/分
  • 情報元: Google トレンド
  • リクエスト制限: 500 リクエスト/月 (この API には Google トレンド上昇キーワードと国別ボリューム ジェネレーターがバンドルされていることに注意してください)
  • スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
Google トレンド データ ジェネレーター API エンドポイントの基本情報

APIエンドポイントパス

必須

「Google トレンドの上位および急上昇クエリ ジェネレーター API」

api/1/topqueries


「Google 検索トレンド データ ジェネレーター API」

api/1/googleTrendV2


「Google 検索トレンド データ国ランキング ジェネレーター API」

api/1/trendGEO


「Google トレンドの上位および急上昇トピック ジェネレーター API」

api/1/trendTopic


Call Method

Required

GET

返されるデータの種類

JSON

Google のトップ検索クエリ, Google 検索トレンド, Google 検索トレンド データの国ランキング, Google トレンドの上位および上昇トピックに関する構造化された JSON データを出力します.


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

token

必須

BUYFROMLO API トークンを購入します. 無料 API とサブスクリプション API の両方が /apis/google-trend で利用可能で, 次からアクセスできます. /app/1/googletrend のサイト APP も同様

keyword

必須

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



「Google トレンドの上位および急上昇クエリ ジェネレーター API」

api/1/topqueries

「Google 検索トレンド データ ジェネレーター API」

api/1/googleTrendV2

「Google 検索トレンド データ国ランキング ジェネレーター API」

api/1/trendGEO

「Google トレンドの上位および急上昇トピック ジェネレーター API」

api/1/trendTopic


コードの統合と対応

Python コードサンプル


import requests

trendendpoint = "https://api.buyfromlo.com/api/1/googleTrendV2?"
queriesendpoint = "https://api.buyfromlo.com/api/1/topqueries?"
geoEndpoint = "https://api.buyfromlo.com/api/1/trendGEO?"
topicEndpoint = "https://api.buyfromlo.com/api/1/trendTopic?"

def googleTrendAPI(apiendpoint):
    token = "your buyfromlo token"
    keyword = "target keyword"

    data="keyword=" +  keyword
    headers={"Authorization": "Bearer " + token}

    ## Call the api ##
    response = requests.get(apiendpoint + data, headers=headers)
    return response.status_code, response.json()
                        

JSON 応答サンプル


## Google Trend Volume ##
{
    "Query": " " (integer),,
    "apiport": " " (string),
}

## Google Top Queries ##
{
    "Keyword": " " (string),
    "Top Search": " " (string),
    "Top Search Value": " " (integer),
    "Rising Search": " " (string),
    "Rising Search Value": " " (integer),
    "apiport": " " (string),
}

## Google Keyword By GEO ##
{
    "Country": " " (string),
    "geoCode": " " (string),
    "query": " " (string),
    "apiport": " " (string),
}

## Google Trending Topic ##
{
    'Top Value Integer': " " (integer),
    'Top Value%': " " (string),
    'Google Trend Link': " " (string),
    'Topic Link Parameter': " " (string),
    'Topic Name': " " (string),
    'Topic Type': " " (string),
    'Query': " " (string),
    'apiport': " " (string)
}