US ETF Dividend Info
Longbridge US Accounts
This method is only available for US data-center accounts.
Get dividend information for a US ETF — TTM dividend yield, payout frequency, and fiscal year breakdown.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | ETF symbol, e.g. IVV.US |
Request Example
Response
Response Example
json
{
"dividend_ttm": "6.84",
"dividend_yield_ttm": "0.0134",
"dividend_frequency": "Quarterly",
"currency": "USD",
"fiscal_year_info": [
{
"fiscal_year": "2025",
"fiscal_year_range": "2025-01-01 ~ 2025-12-31",
"dividend": "6.52",
"dividend_yield": "0.0134",
"currency": "USD"
}
]
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | UsETFDividendInfo |
| 400 | Bad request | None |
Schemas
UsETFDividendInfo
| Name | Type | Required | Description |
|---|---|---|---|
| dividend_ttm | string | true | TTM dividend per share |
| dividend_yield_ttm | string | true | TTM dividend yield (%) |
| dividend_frequency | string | true | Payout frequency (e.g. Quarterly) |
| currency | string | true | Currency code (e.g. USD) |
| fiscal_year_info | USFiscalYearDividend[] | false | Annual dividend breakdown by fiscal year |
USFiscalYearDividend
| Name | Type | Description |
|---|---|---|
| fiscal_year | string | Fiscal year |
| fiscal_year_range | string | Fiscal year date range |
| dividend | string | Total dividend for the year |
| dividend_yield | string | Dividend yield for the year |
| currency | string | Currency code |