API Documentation

⌘K
GET/api/1/equity/dividends-by-fy/{identifier}

Dividends by Fiscal Year API

Returns dividends grouped by fiscal year for the given ISIN

Parameters

1
identifierstringrequired
path

Security identifier: ISIN, ticker, CUSIP, SEDOL, or WKN (e.g. US0378331005, AAPL)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/equity/dividends-by-fy/US0378331005' \
  -H 'Accept: application/json'
200 Response
[
  {
  "ticker": "MSFT",
  "fiscal_year_start": "2025-06-30T22:00:00.000Z",
  "fiscal_year_end": "2026-06-29T22:00:00.000Z",
  "total_dividends_per_fy": 0.91,
  "dividend_count": 1,
  "expected_freq": 4,
  "fully_paid": "NO",
  "fully_paid_current_fy": "NO"
}
]