Balance Sheet API
The Balance Sheet API returns balance sheet data for any public company listed in the United States, including total assets, current and long-term liabilities, stockholders equity, cash and equivalents, total debt, goodwill, intangible assets, accounts receivable and payable, property plant and equipment, working capital, and retained earnings. All data is sourced from official SEC filings (10-Q, 10-K).
Need the full picture in one call? See the Earnings API. For other statements, see the Income Statement API and Cash Flow API.
From 4,029 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 362ms | 381ms | 426ms | 809ms | 1248ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/balancesheet GET
https://api.api-ninjas.com/v1/balancesheet
Returns balance sheet data for a specific company, period, and year. You can identify the company using either a ticker symbol or CIK (Central Index Key).
Q1, Q2, and Q3 figures are sourced from 10-Q filings. Q4 (fiscal year end) figures are sourced from the 10-K filing.
Parameters
If you do not specify a year or period, the API will return the most recent balance sheet.
tickeroptionalCompany ticker symbol (e.g.,
ADBE). Eithertickerorcikmust be provided.cikoptionalCompany Central Index Key (e.g.,
796343). Eithertickerorcikmust be provided.periodoptionalFiscal period. Must be one of:
q1,q2,q3,q4, orfy(full year). If set,yearmust also be set.yearoptionalFiscal year. E.g.
2025. Must be a valid year after 2000. For historical data before 2025, you must have a premium subscription. If set,periodmust also be set.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON object with the following fields or an error if the request is unsuccessful.
company_infoCompany filing information including ticker, CIK, company name, fiscal year, and fiscal quarter.
balance_sheetBalance sheet figures:
total_assets,current_assets,cash_and_equivalents,accounts_receivable,inventory,property_plant_equipment,intangible_assets,goodwill,total_liabilities,current_liabilities,accounts_payable,long_term_debt,total_debt,stockholders_equity,retained_earnings, andworking_capital.filing_infoSEC filing metadata including filing type, filing date, and period end date.
Sample Request Live Demo!
Try our APIs in the API playground
Sign up for a free API key to get started — no credit card required.
https://api.api-ninjas.com/v1/balancesheet?ticker=ADBE&year=2025&period=q2Headers
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/balancesheet?ticker=ADBE&year=2025&period=q2" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.
Frequently Asked Questions
Can I use the Balance Sheet API for commercial purposes?
Yes, but you must have a premium subscription. Commercial use of the Balance Sheet API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.How do I get an API key and start using the Balance Sheet API?
Sign up for a free account to instantly get your API key, then pass it in theX-Api-Keyheader on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.What happens if I exceed my quota for the month?
Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.What happens if a request to the Balance Sheet API fails?
The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.How do I look up the balance sheet for a specific company and period?
Identify the company with either thetickerparameter (e.g.ADBE) or thecikparameter (e.g.796343), and optionally set theperiod(q1,q2,q3,q4, orfy) together with theyear. If you omityearandperiod, the API returns the most recent balance sheet; see the full API list for related financial endpoints.What data and coverage does the Balance Sheet API provide, and where does it come from?
It covers any public company listed in the United States, with all figures sourced from official SEC filings: Q1, Q2, and Q3 come from 10-Q filings while Q4 (fiscal year end) comes from the 10-K. To combine it with reported earnings or other statements, see the Earnings API, Income Statement API, and Cash Flow API.What fields are included in the response?
The response returnscompany_info(ticker, CIK, company name, fiscal year, and fiscal quarter), abalance_sheetobject with line items such astotal_assets,current_assets,cash_and_equivalents,total_liabilities,long_term_debt,total_debt,goodwill,stockholders_equity,retained_earnings, andworking_capital, plusfiling_infowith the filing type, filing date, and period end date. If a request is unsuccessful you will instead receive an error.Can I retrieve historical balance sheet data from past years?
Yes, you can request any validyearafter 2000 by also setting theperiod, but accessing data for years before the current one requires a premium subscription.