Skip to Content

longbridge dividend

View the historical dividend payment history for a stock.

Basic Usage

bash
longbridge dividend 700.HK
| desc                                 | ex_date    | payment_date | record_date |
|--------------------------------------|------------|--------------|-------------|
| Dividend: HKD 5.3/share                     | 2026.05.15 | 2026.06.01   | 2026.05.18  |
| Dividend: HKD 4.5/share                     | 2025.05.16 | 2025.05.30   | 2025.05.19  |
| Dividend: HKD 3.4/share                     | 2024.05.17 | 2024.05.31   | 2024.05.20  |
| Dividend: HKD 2.4/share                     | 2023.05.19 | 2023.06.05   | 2023.05.22  |

Examples

View dividend history

bash
longbridge dividend AAPL.US

Lists all historical dividend payments for Apple, including payment dates, amounts per share, and dividend type.

HK dividend example

bash
longbridge dividend 700.HK

Works the same for Hong Kong-listed stocks. Tencent pays dividends periodically and this shows the full payment history.

Find the next ex-dividend date

bash
# The ex_date field shows the ex-dividend date for each record
longbridge dividend AAPL.US

The most recent record shows the last known ex-dividend date. For upcoming dividends not yet announced, check finance-calendar with the dividend type.

View dividend distribution scheme details

bash
# Show detailed dividend distribution scheme (lot size, currency, ratio)
longbridge dividend detail AAPL.US

The detail subcommand shows the full distribution scheme — useful when a dividend includes bonus shares or rights alongside cash.

JSON for automation

bash
longbridge dividend AAPL.US --format json

Returns structured JSON with ex_date, payment_date, record_date, and a desc field containing the dividend amount description (e.g., "Dividend: USD 0.26/share") — suitable for piping into scripts or tracking tools.