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.
# Key financial metrics (US accounts)
longbridge financial-report key-metrics AAPL.US
longbridge financial-report key-metrics AAPL.US --report quarterlySDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Stock symbol, e.g. AAPL.US |
| report | string | NO | Period: 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
| Status | Description | Schema |
|---|---|---|
| 200 | Success | UsKeyFinancialMetrics |
| 400 | Bad request | None |
Schemas
UsKeyFinancialMetrics
| Name | Type | Required | Description |
|---|---|---|---|
| currency | string | true | Currency code (e.g. USD) |
| report | string | true | Report period type (e.g. annual, quarterly) |
| empty_fields | string[] | false | Fields with no data for this period |
| list | USKeyMetricItem[] | true | Key metric records by period |
USKeyMetricItem
| Name | Type | Required | Description |
|---|---|---|---|
| ff_period | string | true | Period type code (e.g. A=annual, Q=quarterly) |
| ff_year | int | true | Fiscal year |
| fp_end | string | true | Period end date (YYYY-MM-DD) |
| report_txt | string | true | Period label (e.g. FY2024) |
| rpt_date | string | true | Report release date (YYYY-MM-DD) |
| fields | object[] | true | Key financial metric values (structure varies by company) |