#
# # # # #

Listed Company Financial Statement Checker API

API:Financials

US$15US$20

  • Listed company income statement generator provides income statement report data over the past 5 years. Income statement report data has a wide range of perspective, which include revenue, COGS, EBITDA, net profit, free cashflow, etc. Users can generate the data using a company symbol. Also, free trial API allows to generate data over the past 5 years.

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


Listed Company Financial Statement Checker API Applied to Use in Google Sheets.

1 Mins Video Onsite App Demo


Listed Company Financial Statement Checker API Applied in BuyfromLo Onsite App.

Features

  • Listed company income statement generator provides income statement report data since 2001 - 2022.
  • Income statement report data has a wide range of perspective, which include revenue, COGS, EBITDA, net profit, free cashflow, etc.
  • Users can generate the data using a company symbol.
  • Free trial API allows to generate data over the past 5 years.

API Endpoint Specifications

  • Endpoint Path: /api/1/companyfinancials
  • Type of Data: JSON & 20 requests per min
  • Data Source: USA SEC Filing
  • Request Limit: 5,000 request/month (Please note that this token has bundled with Cashflow/Balancesheet Statement Data as well)
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

Listed Company Financial Statement Checker API Endpoint Basic Info

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


Available API Arguments & Parameters

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


Code Integration and Response

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


{

}