





API:Marketing
API Endpoint Path
required
Brand Online World Footprint Checker API
https://www.buyfromlo.com/api/1/brandFootprint
Call Method
Required
GET
Type of Data Return
JSON
JSON output structured data for Brand online footprint 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
brand
required
Input the brand name
Brand Online World Footprint Checker API
https://www.buyfromlo.com/api/1/brandFootprint
Python Code Sample
import requests
apiendpoint = "https://www.buyfromlo.com/api/1/brandchannel"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
brand = "a specific brand name"
## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&brand=" + brand)
print(response.status)
print(response.json())
JSON Response Sample
{
"chnannel name":"",
"channel link":""
}