- API
- Stock analytics
- Dividend analytics
Stock analytics API, GET /dividend/{ticker}
What does AAPL pay, when is the next ex-date, and does the options market agree?
Dividend history, yield, growth and the options-implied dividend against the actual. Returns the current dividend amount, frequency, yield and growth, the implied dividend from options versus the declared one, the next ex-date and the payment history.
The answer, in one call
Units first,
then the request.
Amounts in dollars per share; yields and growth in percent.
Implied dividend from put-call parity on the chain; history from the data feed.
curl -H "Authorization: Bearer avmcp_YOUR_TOKEN" \
"https://apexvol.com/api/mcp/data/dividend/AAPL"
import requests
headers = {"Authorization": "Bearer avmcp_YOUR_TOKEN"}
r = requests.get("https://apexvol.com/api/mcp/data/dividend/AAPL", headers=headers)
r.raise_for_status()
data = r.json()["data"]
print(data["cagr"])
When is AAPL's next ex-dividend date and how much?
The assistant calls get_ticker_analytics and answers from the JSON below.{
"success": true,
"data": {
"cagr": 0.0763,
"current": {
"annual_actual": 1.08,
"annual_implied": 0,
"div_amount": 0.27,
"div_freq": "Quarterly",
"div_growth": 0.0,
"div_yield": 0.3,
"implied_vs_actual": -1.08,
"next_div_date": "2026-11-10",
"next_div_implied": 0,
"price": 320.07
},
"history": [
{
"amount": 0.27,
"decl_date": null,
"ex_date": "2026-11-10",
"frequency": 91,
"pay_date": null,
"type": null
},
{
"amount": 0.27,
"decl_date": null,
"ex_date": "2026-08-10",
"frequency": 91,
"pay_date": null,
"type": null
},
{
"amount": 0.27,
"decl_date": null,
"ex_date": "2026-05-12",
"frequency": 91,
"pay_date": null,
"type": null
}
],
"pays_dividends": true,
"sector": "Technology",
"ticker": "AAPL"
}
}
Every response is wrapped as {"success": true, "data": {...}}. Lists in the sample are cut to a few rows so it fits on a page; the shape is exactly what your code receives.
Parameters
Bounded,
and the bounds are stated.
Out-of-range numbers are clamped to the documented range, never silently changed to something else. A missing required field returns 400 with the reason.
| Name | In | Default | Range | Meaning |
|---|---|---|---|---|
ticker required | path | any covered symbol | The underlying, upper case. Use /search to check coverage. |
Field by field
What each
number means.
current.div_amount, div_freq, div_yield, next_div_date- The dividend now.
current.annual_implied, annual_actual, implied_vs_actual- What options imply versus what is paid.
history[].ex_date, pay_date, amount- Past payments.
cagr, pays_dividends- Growth and flag.
Access, limits, errors
Before the
first call.
- Plan
- Premium Premium and above. Tokens are issued to paid and trial accounts from $55 a month; each endpoint follows the tier of its web feature. An endpoint above your plan answers 402 and names the plan it needs.
- Auth
- Bearer token, prefix
avmcp_, created under Account, then API Access. Shown once, hashed at rest, rotates in one click. Always callhttps://apexvol.com, never www. - Limits
- 60 requests a minute and 1,000 an hour per token, plus a monthly allowance by plan. Every response carries the remaining counts in
X-RateLimit-*headers; a 429 carriesRetry-Afterin seconds. - Errors
401no or revoked token;429Retry-After seconds;403Premium plan required;424data feed unavailable, retry. The full list with payload shapes is on the errors page.- Since
- API 1.0. Units, bases and timestamps follow the conventions shared by every endpoint; changes are logged in the API changelog.
- Machine-readable
- This page as Markdown, the family as one file, the whole API as llms-full.txt or OpenAPI 3.1.
The same data, in plain English
Ask for it
in an MCP client.
Connect the ApexVol MCP server and the assistant calls get_ticker_analytics by name. One URL, a sign-in, no token to paste.
When is AAPL's next ex-dividend date and how much?
YouDoes the options market imply a dividend cut for XOM?
YouShow MSFT's dividend history and growth.
More in the prompt library. Set the server up in Claude Desktop, Claude Code, Cursor, ChatGPT, VS Code, Windsurf or Gemini CLI.
Included with
every paid plan.
From $55 a month, tier-matched: your token queries the data your plan includes and Pro unlocks the full surface.
Real market data, not a sandbox. See it live on AAPL.