





API:Marketing
API Endpoint Path
required
Website Traffic Tracker API
https://www.buyfromlo.com/api/3/webData
Call Method
Required
GET
Type of Data Return
JSON
JSON output structured data for website traffic 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
url
required
Input the target website URL
Website Traffic Tracker API
https://www.buyfromlo.com/api/3/webData
Python Code Sample
import requests
apiendpoint = "https://www.buyfromlo.com/api/3/webData"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
url = "website domain URL"
## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&url=" + url)
print(response.status)
print(response.json())
JSON Response Sample
{
"Website Avg Monthly Traffic": ""
}