list_dividends
Retrieve paid-out dividends with details like ticker, net amount, payment date, and quantity. Supports pagination and filtering by ticker.
Instructions
List paid-out dividends.
Returns {"items": [...], "next_cursor": str | None}. Each item:
ticker, paidOn (ISO 8601), amount (net, in the account currency),
grossAmountPerShare (in the instrument currency), quantity (shares
held), type (e.g. ORDINARY, INTEREST, CAPITAL_GAINS), reference.
Pass next_cursor back as cursor for the next page; it is null on
the last page. Rate limit: 6 requests per 1 minute.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Items per page. | |
| cursor | No | Pagination cursor from a previous call's next_cursor. | |
| ticker | No | Filter to one Trading 212 ticker, e.g. "AAPL_US_EQ". |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||