US Company Dividends
Longbridge US Accounts
This method is only available for US data-center accounts.
Get dividend history for a US stock — TTM yield, payout count, and individual dividend records.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Stock symbol, e.g. AAPL.US |
Request Example
Response
Response Example
json
{
"recent_dividends": {
"dividend_ttm": "1.00",
"dividend_yield_ttm": "0.0053",
"payouts": "4",
"currency": "USD"
},
"dividend_history": [
{
"fiscal_year": "2024",
"fiscal_year_range": "2024-01-01 ~ 2024-12-31",
"dividend": "1.00",
"dividend_yield": "0.0053",
"dividend_growth_rate": "0.0408",
"dividend_payout_ratio": "0.1497",
"total_shareholder_yield": "0.0163",
"currency": "USD"
}
],
"payout_ratios": [
{
"fiscal_year": "2024",
"fiscal_year_range": "2024-01-01 ~ 2024-12-31",
"dividend_payout_ratio": "0.1497",
"currency": "USD"
}
],
"dividend_payout_history": [
{
"dividend": "0.25",
"dividend_type": "Cash",
"currency": "USD",
"ex_date": "2024-11-08",
"payment_date": "2024-11-14",
"record_date": "2024-11-11",
"title": "Q4 FY2024 Dividend",
"start_time_unix": "1730000000"
}
]
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | UsCompanyDividends |
| 400 | Bad request | None |
Schemas
UsCompanyDividends
| Name | Type | Required | Description |
|---|---|---|---|
| recent_dividends | USRecentDividend | true | Recent dividend summary |
| dividend_history | USDividendHistoryItem[] | false | Annual dividend history |
| payout_ratios | USDividendHistoryItem[] | false | Payout ratio history |
| dividend_payout_history | USDividendPayoutRecord[] | false | Individual payout records |
USRecentDividend
| Name | Type | Description |
|---|---|---|
| dividend_ttm | string | TTM dividend per share |
| dividend_yield_ttm | string | TTM dividend yield (%) |
| payouts | string | Number of payouts in past year |
| currency | string | Currency code |
USDividendHistoryItem
| Name | Type | Description |
|---|---|---|
| fiscal_year | string | Fiscal year |
| fiscal_year_range | string | Fiscal year date range |
| dividend | string | Total dividend per share |
| dividend_yield | string | Dividend yield |
| dividend_growth_rate | string | YoY dividend growth rate |
| dividend_payout_ratio | string | Dividend payout ratio |
| dividend_to_cashflow_ratio | string | Dividend-to-cashflow ratio |
| total_shareholder_yield | string | Total shareholder yield |
| net_buyback | string | Net buyback amount |
| net_buyback_yield | string | Net buyback yield |
| net_buyback_growth_rate | string | Net buyback growth rate |
| net_buyback_payout_ratio | string | Net buyback payout ratio |
| net_buyback_to_cashflow_ratio | string | Net buyback-to-cashflow ratio |
| currency | string | Currency code |