Skip to main content
GET
/
v2
/
dividends
curl
curl "https://api.stockcontext.com/v2/dividends?symbol=AAPL" \
  -H "X-API-Key: $STOCKCONTEXT_API_KEY"
{
  "data": {
    "as_of": "2026-06-11T20:00:00Z",
    "cache_age_seconds": 26488,
    "currency": "USD",
    "current": {
      "annual_rate": 1.08,
      "annual_rate_forward_estimated": 1.08,
      "frequency": "quarterly",
      "last_ex_date": "2026-05-11",
      "last_payment_amount": 0.27,
      "next_ex_date_estimated": "2026-08-10",
      "next_payment_amount_estimated": 0.27,
      "yield_basis": "forward_annualized",
      "yield_pct": 0.37
    },
    "dividend_health": {
      "payout_components": {
        "ebitda_coverage": 10.31,
        "fcf_payout_ratio_pct": 12.04,
        "net_debt_to_ebitda": 0.1,
        "ocf_coverage": 9.02,
        "payout_ratio_pct": 12.69
      },
      "track_record": {
        "consecutive_increase_years_within_5y_window": 5,
        "cuts_in_5y_window": 0,
        "never_cut_in_5y_window": true
      }
    },
    "freshness": "end_of_day",
    "growth": {
      "consecutive_years_increased_within_5y_window": 5,
      "last_increase_date": "2026-05-11"
    },
    "history_summary": {
      "ex_date_first": "2021-08-06",
      "total_payments": 20
    },
    "market_status": "open",
    "status": "payer",
    "symbol": "AAPL"
  },
  "schema_version": "2026-06-17.6"
}

Authorizations

X-API-Key
string
header
required

StockContext API key. Keys start with sctx_ and are sent on every REST request.

Query Parameters

symbol
string
required

Ticker symbol. Case-insensitive; share-class dots are normalized to dashes (BRK.B == BRK-B). Returns SYMBOL_UNKNOWN when the symbol is outside the supported universe.

Example:

"AAPL"

Response

Success envelope: { "data": ... }.

data
DividendsData · object
required

The endpoint payload. Present on every 2xx response; never null.

schema_version
string
required

StockContext response schema version for this 200 payload.