#
# # # # #

Google Trend Data Generator API

API:Marketing

US$5US$10

  • Generate the keyword demand trend since 2004 till up-to-date. Users can generate the Google keyword trend using a keyword query. There are additional two endpoints in this API. One is for generating top rising keywords. The other is to generate the trending keyword by country.

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


Google Trend Data Generator API Applied to Use in Google Sheets.

Features

  • Google Trend API generate the keyword demand trend since 2004 till up-to-date.
  • Users can generate the Google keyword trend using a keyword query.
  • There are additional two endpoints in this API.
  • One is for generating top rising keywords. The other is to generate the trending keyword by country.

API Endpoint Specifications

  • Endpoint Path: /api/1/googleTrend
  • Type of Data: JSON & 10 requests per min
  • Data Source: Google Trend
  • Request Limit: 500 requests/month (Please note that this API has bundled with Google trend rising keyword & country volume generator)
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

Google Trend Data Generator API Endpoint Basic Info

API Endpoint Path

required

Google Trend Top & Rising Queries Generator API

https://www.buyfromlo.com/api/1/topqueries


Google Search Trend Data Generator API

https://www.buyfromlo.com/api/1/googleTrendV2


Google Search Trend Data Country Ranking Generator API

https://www.buyfromlo.com/api/1/trendGEO


Google Trend Top & Rising Topics Generator API

https://www.buyfromlo.com/api/1/trendTopic


Call Method

Required

GET

Type of Data Return

JSON

JSON output structured data for Google Top Search Queries, Google Search Trend, Google search trend data country ranking and Google trend top and rising topics


Available API Arguments & Parameters

Token

required

BUYFROMLO API token. Free and subscription APIs are both available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well

keyword

required

Input a keyword in English



Google Trend Top & Rising Queries Generator API

https://www.buyfromlo.com/api/1/topqueries

Google Search Trend Data Generator API

https://www.buyfromlo.com/api/1/googleTrendV2

Google Search Trend Data Country Ranking Generator API

https://www.buyfromlo.com/api/1/trendGEO

Google Trend Top & Rising Topics Generator API

https://www.buyfromlo.com/api/1/trendTopic


Code Integration and Response

Python Code Sample


import requests

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

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

    ## Call the api ##
    response = requests.get(apiendpoint + "?token=" + token + "&keyword=" + keyword)
    return response.status, response.json()
                        

JSON Response Sample


## Google Trend Volume ##
{
    "Query": "",
    "apiport": ""
}

## Google Top Queries ##
{
    "Keyword": "",
    "Top Search": "",
    "Top Search Value": "",
    "Rising Search": "",
    "Rising Search Value": "",
    "apiport": ""
}

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

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