





API:Financials
API Endpoint Path
required
Call Method
Required
GET
Type of Data Return
JSON
required
required
required
required
Optional
Optional
Optional
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":""
}