- API
- Events and calendars
- Earnings calendar
Events and calendars API, GET /earnings-calendar
Who reports this week, and which names have the biggest move priced in?
Upcoming reports with the implied move next to the historical average. Lists reports over the next days_ahead with timing, estimates, the implied earnings move, the average move over the last twelve reports and the ratio of the two, plus a day grid for display.
The answer, in one call
Units first,
then the request.
implied_move and hist_avg_move in percent (expected absolute move); market_cap in dollars.
implied_move is the feed's one-sigma figure times 0.8 so it shares hist_avg_move's basis; implied_move_basis says so and implied_move_sigma keeps the raw figure.
curl -H "Authorization: Bearer avmcp_YOUR_TOKEN" \
"https://apexvol.com/api/mcp/data/earnings-calendar?days_ahead=7"
import requests
headers = {"Authorization": "Bearer avmcp_YOUR_TOKEN"}
params = {"days_ahead": "7"}
r = requests.get("https://apexvol.com/api/mcp/data/earnings-calendar", headers=headers, params=params)
r.raise_for_status()
data = r.json()["data"]
print(data["total_count"])
Who reports earnings this week with the biggest implied move?
The assistant calls get_earnings_calendar and answers from the JSON below.{
"success": true,
"data": {
"earnings": [
{
"cap_group": "large",
"company_name": "Kroger Co.",
"date": "2026-09-11",
"datetime": "Fri, 11 Sep 2026 00:00:00 GMT",
"days_until": 3,
"eps_actual": null,
"eps_estimate": 1.05,
"fiscal_quarter": null,
"hist_avg_move": 4.72,
"implied_move": 3.87,
"implied_move_basis": "expected_abs_move",
"implied_move_sigma": 4.84,
"market_cap": 35876625000.0,
"move_ratio": 0.82,
"revenue_actual": null,
"revenue_estimate": 34641620000,
"sector": "Consumer Staples",
"symbol": "KR",
"timing": "BMO",
"updated": "2026-09-08"
},
{
"cap_group": "mega",
"company_name": "Oracle Corporation",
"date": "2026-09-10",
"datetime": "Thu, 10 Sep 2026 00:00:00 GMT",
"days_until": 2,
"eps_actual": null,
"eps_estimate": 1.74,
"fiscal_quarter": null,
"hist_avg_move": 12.5,
"implied_move": 8.02,
"implied_move_basis": "expected_abs_move",
"implied_move_sigma": 10.03,
"market_cap": 456554654000.0,
"move_ratio": 0.64,
"revenue_actual": null,
"revenue_estimate": 19131390000,
"sector": "Technology",
"symbol": "ORCL",
"timing": "AMC",
"updated": "2026-09-08"
},
{
"cap_group": "mid",
"company_name": "",
"date": "2026-09-08",
"datetime": "Tue, 08 Sep 2026 00:00:00 GMT",
"days_until": 0,
"eps_actual": null,
"eps_estimate": 0.612,
"fiscal_quarter": null,
"hist_avg_move": 13.76,
"implied_move": 8.36,
"implied_move_basis": "expected_abs_move",
"implied_move_sigma": 10.45,
"market_cap": 2654975000.0,
"move_ratio": 0.61,
"revenue_actual": null,
"revenue_estimate": 7705088000,
"sector": "",
"symbol": "UNFI",
"timing": "TBD",
"updated": "2026-09-08"
}
],
"from_date": "2026-09-08",
"success": true,
"timestamp": "2026-09-08T08:07:48.281034",
"to_date": "2026-09-15",
"total_count": 12
}
}
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 |
|---|---|---|---|---|
days_ahead | query | 7 | 1 to 90 | How far ahead to look. |
Field by field
What each
number means.
earnings[].symbol, company_name, date, timing- Who and when.
earnings[].implied_move, hist_avg_move, move_ratio- Priced versus typical.
earnings[].eps_estimate, revenue_estimate, market_cap, sector- Context.
total_count, from_date, to_date- The window.
Access, limits, errors
Before the
first call.
- Plan
- Basic Basic 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;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_earnings_calendar by name. One URL, a sign-in, no token to paste.
Who reports earnings this week with the biggest implied move?
YouList next week's large-cap earnings.
YouWhich reports in the next 3 days have a move ratio above 1.2?
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.