





API:Marketing
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
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
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":""
}