#
# # # # #

Keyword Data Estimator API

API:Marketing

US$54US$60

  • Keyword data estimator can generate keyword avg.monthly traffic and CPC. Keyword estimator can generate the keyword data by country and channel using a keyword query. Options of search engine channel include Google, Bing, Amazon. 4 languages are doable which are English, Japanese, Simplified Chinese and Traditional Chinese

  • 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


Keyword Data Estimator API Applied to Use in Google Sheets.

Features

  • Keyword data estimator can generate keyword avg.monthly traffic and CPC.
  • Keyword estimator can generate the keyword data by country and channel using a keyword query.
  • Options of search engine channel include Google, Bing, Amazon.
  • 4 languages are doable which are English, Japanese, Simplified Chinese and Traditional Chinese

API Endpoint Specifications

  • Endpoint Path: /api/3/kwMediaCost
  • Type of Data: JSON & 5 requests per min
  • Data Source: Google, Bing & Amazon
  • Request Limit: 500 requests/month
  • 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

Keyword Data Estimator API Endpoint Basic Info

API Endpoint Path

required

Keyword Data Estimator API

https://www.buyfromlo.com/api/3/kwMediaCost


Call Method

Required

GET

Type of Data Return

JSON

JSON output structured data for keyword volume and cost per click data


Available API Arguments & Parameters

Token

required

BUYFROMLO API token. Subscription API is available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well

keyword

required

Input a keyword

country

required

Enter the target market using full name, such as United States, United Kingdom

searchengine

required

Input the target search engine or marketplace full name, such as Google, Bing, Amazon.com, etc. Currently, only these 3 engines are available using Keyword Estimator API to check the data.



Keyword Data Estimator API

https://www.buyfromlo.com/api/3/kwMediaCost


Code Integration and Response

Python Code Sample


import requests

## Required components ##

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

## Call the api ##

response = requests.get(apiendpoint + "?token=" + token + "&keyword=" + keyword + "&country=" + country + "&searchengine=" + searchengine)
print(response.status)
print(response.json())
                        

JSON Response Sample


{
    "Keyword":"",
    "Channel":"",
    "Performance": "",
    "Search Volume": "",
    "machine_learning_model":""
}