Skip to Content

US Financial Statement

Longbridge US Accounts

This method is only available for US data-center accounts.

Get a specific financial statement (income statement, balance sheet, or cash flow) for a US stock.

CLI
# Income statement
longbridge financial-statement AAPL.US --kind IS
# Balance sheet
longbridge financial-statement AAPL.US --kind BS

Parameters

SDK method parameters.

NameTypeRequiredDescription
symbolstringYESStock symbol, e.g. AAPL.US
kindstringYESStatement type: IS (income), BS (balance sheet), CF (cash flow)
reportstringYESPeriod: af (annual), saf (semi-annual), qf (quarterly), q1 (Q1), 3q (Q3)

Request Example

Response

Response Example

json
{
  "currency": "USD",
  "report": "af",
  "empty_fields": [],
  "list": [
    {
      "ff_period": "A",
      "ff_year": 2024,
      "fp_end": "2024-09-28",
      "report_txt": "FY2024",
      "rpt_date": "2024-11-01",
      "fields": [
        {
          "id": "revenue",
          "name": "Total Revenue",
          "value": "391035000000",
          "yoy": "0.0198",
          "level": 1,
          "display_order": 1,
          "field": "revenue",
          "value_type": "amount"
        }
      ]
    }
  ]
}

Response Status

StatusDescriptionSchema
200SuccessUsFinancialStatement
400Bad requestNone

Schemas

UsFinancialStatement

NameTypeRequiredDescription
currencystringtrueCurrency code (e.g. USD)
reportstringtrueReport period type (e.g. annual, quarterly)
empty_fieldsstring[]falseFields with no data for this period
listUSFinancialStatementPeriod[]trueStatement data by period

USFinancialStatementPeriod

NameTypeRequiredDescription
ff_periodstringtruePeriod type code (e.g. A=annual, Q=quarterly)
ff_yearinttrueFiscal year
fp_endstringtruePeriod end date (YYYY-MM-DD)
report_txtstringtruePeriod label (e.g. FY2024)
rpt_datestringtrueReport release date (YYYY-MM-DD)
fieldsUSFinancialStatementField[]trueFinancial line items

USFinancialStatementField

NameTypeRequiredDescription
idstringtrueField identifier
namestringtrueField display name
valuestringtrueField value
yoystringfalseYear-over-year change rate
levelinttrueHierarchy level (1=top level)
display_orderinttrueDisplay order
fieldstringtrueField key name
value_typestringtrueValue type (e.g. amount, ratio)