Balance Sheets

Retrieve balance sheet history using ticker or CIK, timeframe, fiscal-year filters, and limit.

Endpoint

GET /statements/balance_sheet
Test request
/statements/balance_sheet?ticker=AAPL&start=2024&end=2024&timeframe=annual&limit=5

Create a free account to run these investor-grade stock endpoints with your own key. Create a free account to run the full workflow.

Send a request to view the response.

Query Parameters

  • ticker: required when cik is not provided
  • cik: optional SEC CIK
  • start: optional fiscal-year lower bound
  • end: optional fiscal-year upper bound
  • timeframe: optional annual, quarterly, or ttm
  • limit: optional row limit

Response

Typical fields include:

  • cash_and_equivalents
  • accounts_receivable
  • inventory
  • total_current_assets
  • total_assets
  • short_term_debt
  • long_term_debt
  • total_liabilities
  • total_equity
  • tangible_book_value

Example Request

curl -H "Authorization: Bearer $your_api_key" \
  "https://api.apifinance.ai/statements/balance_sheet?ticker=AAPL&timeframe=annual&limit=5"

Next step

Run this endpoint with your own API key

Use the playground to inspect the response first, then create a key and move into implementation once the payload fits your product.