Brand Online Channel & Footprint Checker API
API Endpoint Specifications
- Endpoint Path: /api/1/brandchannel
- Type of Data: JSON & 20/minute
- Data Source: Source from Internet
- Request Limit: 500 request/month
- Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Brand Online Channel & Footprint Checker API Endpoint Basic Info
API Endpoint Path
required
Brand Online World Footprint Checker API
/api/1/brandchannel
Call Method
Required
POST
Type of Data Return
JSON
Output structured JSON data on Brand online footprint
Available API Arguments & Parameters
token
required
BUYFROMLO API token. Free and paid subscription API are available: /api/1/brandchannel, and accessible to on-site APP on /app/1/brandchannel as well
brand
required
Input the brand name
Brand Online World Footprint Checker API
/api/1/brandchannel
Code Integration and Response
Python Code Sample
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/brandchannel"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
brand = "a specific brand name"
data={"brand": brand}
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.post(apiendpoint, json=data, headers=headers)
print(response.status_code)
print(response.json())
JSON Response Sample
{
'Apple Apps Store':'',
'Google Play Store':'',
'Tiktok:''',
'Youtube':''',
'Pinterest':''',
'Wikipeida':''',
'Yahoo Finance':''',
'Crunchbase:'''',
'Pitchbook':''',
'Trustpilot':''',
'Glassdoor':''',
'Github':''',
'Coindesk':''',
'Amazon':''',
'eBay':''',
'BestBuy':''',
'Target':''',
'Kohls':''',
'Lowes':''',
'Walmart':''',
'Homedepot':''',
'Newegg':''',
'Facebook':''',
'Linkedin':''',
'Instagram':''',
'Twitter':'''
}