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.
# Income statement
longbridge financial-statement AAPL.US --kind IS
# Balance sheet
longbridge financial-statement AAPL.US --kind BSSDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Stock symbol, e.g. AAPL.US |
| kind | string | YES | Statement type: IS (income), BS (balance sheet), CF (cash flow) |
| report | string | YES | 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": [
{
"id": "revenue",
"name": "Total Revenue",
"value": "391035000000",
"yoy": "0.0198",
"level": 1,
"display_order": 1,
"field": "revenue",
"value_type": "amount"
}
]
}
]
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | UsFinancialStatement |
| 400 | Bad request | None |
Schemas
UsFinancialStatement
| 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 | USFinancialStatementPeriod[] | true | Statement data by period |
USFinancialStatementPeriod
| 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 | USFinancialStatementField[] | true | Financial line items |
USFinancialStatementField
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | true | Field identifier |
| name | string | true | Field display name |
| value | string | true | Field value |
| yoy | string | false | Year-over-year change rate |
| level | int | true | Hierarchy level (1=top level) |
| display_order | int | true | Display order |
| field | string | true | Field key name |
| value_type | string | true | Value type (e.g. amount, ratio) |