Skip to Content

US Key Financial Metrics

Longbridge US Accounts

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

Get key financial metrics for a US stock — revenue, net income, EPS, margins, and growth rates.

CLI
# Key financial metrics (US accounts)
longbridge financial-report key-metrics AAPL.US
longbridge financial-report key-metrics AAPL.US --report quarterly

Parameters

SDK method parameters.

NameTypeRequiredDescription
symbolstringYESStock symbol, e.g. AAPL.US
reportstringNOPeriod: 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": [
        {"key": "revenue", "value": "391035000000"},
        {"key": "gross_margin", "value": "0.4621"},
        {"key": "net_margin", "value": "0.2397"},
        {"key": "eps", "value": "6.07"}
      ]
    }
  ]
}

Response Status

StatusDescriptionSchema
200SuccessUsKeyFinancialMetrics
400Bad requestNone

Schemas

UsKeyFinancialMetrics

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

USKeyMetricItem

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)
fieldsobject[]trueKey financial metric values (structure varies by company)