- API
- Events and calendars
- Economic calendar
Events and calendars API, GET /economic-calendar
When are CPI, FOMC and the jobs report over the next two weeks?
The macro event calendar with impact, estimate, previous and actual. Returns scheduled macro events with date, time, impact level, estimate, previous and actual once released, grouped by date and as a flat list.
The answer, in one call
Units first,
then the request.
Values in the event's own unit (unit field); times are US Eastern.
Economic calendar feed; country defaults to US.
curl -H "Authorization: Bearer avmcp_YOUR_TOKEN" \
"https://apexvol.com/api/mcp/data/economic-calendar"
import requests
headers = {"Authorization": "Bearer avmcp_YOUR_TOKEN"}
r = requests.get("https://apexvol.com/api/mcp/data/economic-calendar", headers=headers)
r.raise_for_status()
data = r.json()["data"]
print(data["high_count"])
When is the next FOMC and CPI?
The assistant calls get_economic_calendar and answers from the JSON below.{
"success": true,
"data": {
"events": [
{
"actual": null,
"change": null,
"change_pct": 0,
"country": "US",
"currency": "USD",
"date": "2026-09-09",
"datetime": "Wed, 09 Sep 2026 16:30:00 GMT",
"estimate": null,
"event": "API Crude Oil Stock Change (Sep/04)",
"impact": "Medium",
"previous": -2.6,
"time": "4:30 PM",
"unit": null
},
{
"actual": null,
"change": null,
"change_pct": 0,
"country": "US",
"currency": "USD",
"date": "2026-09-09",
"datetime": "Wed, 09 Sep 2026 07:00:00 GMT",
"estimate": null,
"event": "MBA 30-Year Mortgage Rate (Sep/04)",
"impact": "Medium",
"previous": 6.79,
"time": "7:00 AM",
"unit": "%"
},
{
"actual": null,
"change": null,
"change_pct": 0,
"country": "US",
"currency": "USD",
"date": "2026-09-10",
"datetime": "Thu, 10 Sep 2026 10:00:00 GMT",
"estimate": 3.99,
"event": "Existing Home Sales (Aug)",
"impact": "High",
"previous": 4.06,
"time": "10:00 AM",
"unit": "M"
}
],
"high_count": 14,
"medium_count": 38,
"success": true,
"total_count": 52
}
}
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 |
|---|---|---|---|---|
from_date | query | today | YYYY-MM-DD | Start. |
to_date | query | +14 days | YYYY-MM-DD | End. |
country | query | US | ISO country | Which calendar. |
Field by field
What each
number means.
events[].event, date, time, impact- What and when.
events[].estimate, previous, actual, unit- The numbers.
high_count, medium_count- How busy the window is.
by_date- Events grouped per day.
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_economic_calendar by name. One URL, a sign-in, no token to paste.
When is the next FOMC and CPI?
YouWhat high-impact macro events are scheduled this week?
YouIs there a jobs report before SPY's Friday expiration?
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.