HomeChatAlertsCalendarScreenerWatchlistsFiles
DocsSettings
Sign upJoinLog in

Docs

Overview

IntroductionMCP ServerOpenAPI Spec

REST API

GETAll EarningsGETEarnings by TickerGETAll DividendsGETDividends by TickerGETAll Stock SplitsGETStock Splits by TickerGETAll IPOsGETIPOs by Ticker

WebSocket

Live Quotes (Per Second)Live Quotes (Per Minute)Live NewsLive SEC FilingsTrading Halts

Dividends by Ticker

GET/v1/dividends/{ticker}
View as markdown

Retrieve dividend history for a ticker: ex-date, record and payment dates, declaration date, cash amount, adjusted dividend, yield and payment frequency. Results are ordered by ex-date descending. Ideal for income investing screens, dividend calendars and total-return analysis.

Use cases

  • Dividend yield and income portfolio analysis
  • Ex-dividend calendar and cash-flow planning
  • Total-return studies that include distributions
  • Screening for consistent dividend payers

Input parameters

(*) Required

ParameterTypeDescription
ticker(*)stringTicker.
limitintegerMax results (default 500).

Output parameters

FieldTypeDescription
resultsarrayDividend records, most recent ex-date first.
results[].tickerstringTicker.
results[].ex_datestringEx-dividend date (YYYY-MM-DD).
results[].record_datestringRecord date (YYYY-MM-DD).
results[].payment_datestringPayment date (YYYY-MM-DD).
results[].declaration_datestringDeclaration date (YYYY-MM-DD).
results[].adj_dividendfloatSplit-adjusted dividend per share.
results[].dividendfloatCash dividend per share.
results[].dividend_yieldfloatIndicated yield at payment (percent).
results[].frequencystringPayment frequency label (e.g. Quarterly).
countintegerNumber of dividend records returned.
from vantafin import RESTClient

client = RESTClient("vf-live-your_api_key")

result = client.get_dividends("AAPL")

print(result)
{
  "results": [
    {
      "ticker": "AAPL",
      "ex_date": "2026-05-11",
      "record_date": "2026-05-11",
      "payment_date": "2026-05-14",
      "declaration_date": "2026-04-30",
      "adj_dividend": 0.27,
      "dividend": 0.27,
      "dividend_yield": 0.3587535875,
      "frequency": "Quarterly"
    },
    {
      "ticker": "AAPL",
      "ex_date": "2026-02-09",
      "record_date": "2026-02-09",
      "payment_date": "2026-02-12",
      "declaration_date": "2026-01-29",
      "adj_dividend": 0.26,
      "dividend": 0.26,
      "dividend_yield": 0.3787051198,
      "frequency": "Quarterly"
    }
  ],
  "count": 26
}
All Dividends
All Stock Splits