GET/dividends/{identifier}
Advanced or higher

Where an instrument's dividend cycle stands now

The latest declared dividend, and the next one projected from the issuer's own rhythm. next carries dates only — never an amount — and is omitted when the issuer has not shown a regular enough cadence to project from, or when that cadence has broken.

Code samples

curl -X GET 'https://api.tickerapp.net/v2/dividends/<identifier>' \
  -H 'x-api-key: $TICKER_API_KEY'

Try it

Try it live
Send a real request to this endpoint with your API key. Sign in to try it from your browser.
Sign in to try →

Parameters

Path parameters

identifierrequired
string

ISIN (12 chars) or MIC:symbol.

Responses

200The current and projected dividend
{
  "instrument": {
    "isin": string
  },
  "entity": {
    "name": string
  },
  "listing": {
    "symbol": string | null,
    "mic": string
  },
  "data": {
    "current": any,
    "next": DividendProjection
  }
}
403The plan does not include dividend data
404Instrument not found, or it has no recorded dividends