Skip to Content

Financial Report

Fetch income statement, balance sheet, and cash flow statement for any public company.

CLI
longbridge financial-report TSLA.US --kind IS
longbridge financial-report AAPL.US

Parameters

SDK method parameters.

NameTypeRequiredDescription
symbolstringYESSecurity symbol, e.g. AAPL.US
kindstringYESReport type: IncomeStatement, BalanceSheet, CashFlow, All
periodstringYESReport period: Annual, SemiAnnual, Q1, Q2, Q3, ThreeQ, QuarterlyFull

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "list": {
      "IS": {
        "indicators": [
          {
            "title": "Income Statement",
            "short_title": "IS",
            "currency": "USD",
            "has_yoy": true,
            "entry": "IS",
            "periods": [
              "FY2025",
              "FY2024"
            ],
            "accounts": [
              {
                "field": "EPS",
                "name": "Earnings Per Share(USD)",
                "percent": false,
                "tip": "",
                "values": [
                  {
                    "period": "FY 2025",
                    "year": 2025,
                    "fp_end": "1758945600",
                    "value": "7.46",
                    "ratio": "",
                    "yoy": "0.227"
                  }
                ]
              }
            ]
          }
        ]
      }
    }
  }
}

Response Status

StatusDescriptionSchema
200SuccessFinancialReportsResponse
400Bad requestNone

Schemas

FinancialReportsResponse

NameTypeRequiredDescription
listobjecttrueReport data grouped by kind (key: report type code, e.g. IS, BS, CF)

FinancialReportIndicator

NameTypeRequiredDescription
titlestringfalseIndicator title
short_titlestringfalseShort title
currencystringfalseCurrency
has_yoybooleanfalseWhether year-over-year data is available
entrystringfalseEntry identifier
periodsstring[]falseAvailable reporting periods
accountsobject[]falseList of financial line items, see FinancialAccount

FinancialAccount

NameTypeRequiredDescription
fieldstringtrueField identifier
namestringfalseField display name
percentbooleanfalseWhether the value is a percentage
tipstringfalseTooltip description
valuesobject[]falseHistorical values by period, see FinancialValue

FinancialValue

NameTypeRequiredDescription
periodstringtruePeriod label (e.g. FY 2024)
yearintegerfalseFiscal year
fp_endstringfalsePeriod end timestamp
valuestringfalseReported value
ratiostringfalseRatio value
yoystringfalseYear-over-year growth rate