





API:Financials
API Endpoint Path
required
https://www.buyfromlo.com/api/1/companyfinancials
Call Method
Required
GET
Type of Data Return
JSON
JSON output structured data for Homedepot SERP product 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
ticker
required
Input a stock ticker
type
Optional
Select the type of data return. The default value is stockpricing. It also provides news, financial statement
period
Optional
The date range of the dataset. The options currently have max, 3 years, 1 year, 6 months, 1 month, today
interval
Optional
Select the internval, which options include by year, by month, by day
https://www.buyfromlo.com/api/1/companyfinancials
Python Code Sample
import requests
apiendpoint = "https://www.buyfromlo.com/api/1/companyfinancials"
## Required Arguments & Parameters ##
token = ""your buyfromlo token""
ticker = ""Input a query""
## Optional Argument ##
type="page number. The default number is 1"
period=""
interval=""
## Call the api ##
response = requests.get(apiendpoint + ""?token="" + token + ""&ticker="" + ticker + "&type=" + type + "&period=" + period + "&interval=" + interval)
print(response.status)
print(response.json())
JSON Response Sample
{
}