Guides · Vanoe Market Intelligence API

Economic calendar API: upcoming FOMC, CPI and payrolls dates

A small endpoint with a large effect on scheduling: the dates of the events that reprice everything. Ask for the next ten days by default, up to sixty, and get each event with its date and how many days away it is.

Typical uses

Pause a bot around a rate decision, widen stops into a CPI print, or have an agent mention that the FOMC meets in six days when asked about a rate-sensitive stock.

Request

curl -H "Authorization: Bearer sk_live_…" \
  "https://api.vanoe.ai/v1/calendar?within_days=10"

Response

{
  "data": [
    {"event": "CPI (Aug) release", "in_days": 1, "date": "2026-09-11"},
    {"event": "FOMC rate decision", "in_days": 6, "date": "2026-09-16"}
  ],
  "as_of": "2026-09-10", "freshness": "weekly", "suggested_recheck_seconds": 86400,
  "disclaimer": "Informational data only. Not financial advice. This is not a recommendation, solicitation, or offer to buy or sell any security."
}

Cost: 1 credit per call.

Fields

eventhuman-readable event name
dateISO date
in_daysdays from today

Questions

Which events are included?

FOMC decisions, CPI releases and the monthly payrolls report, from the published official schedules.

Try it

Free tier: 1,000 credits a month, no card. Every response is informational data only, not financial advice.

Related guides