---
title: "Central bank meeting calendar (FOMC, ECB, BoE, BoJ, SNB, Riksbank)"
method: GET
path: "/api/v1/macro/cb-calendar"
tags: ["Economics"]
---

# Central bank meeting calendar (FOMC, ECB, BoE, BoJ, SNB, Riksbank)

`GET /api/v1/macro/cb-calendar`

Scheduled monetary policy meetings and announcement days of six central banks, as PUBLISHED on each bank's own site - a static committed table refreshed yearly, independent of any data-release feed. Every row carries the decision publication day (decision_date), the meeting window for two-day formats, and whether the decision ships with the bank's forecast publication (type=projections). Defaults to upcoming meetings; pass upcoming=false for the full published table, or from/to for a window.

## Query parameters

- `bank` string, nullable — Narrow to one bank: fomc, ecb, boe, boj, snb, riksbank.
- `upcoming` boolean, nullable — True keeps meetings whose decision day is today or later - the default WITHOUT a window. With from/to the window states the range and upcoming defaults to false, so a historical window is not silently emptied; pass it explicitly to combine.
- `from` string, nullable — Window lower bound on decision_date, YYYY-MM-DD inclusive.
- `to` string, nullable — Window upper bound on decision_date, YYYY-MM-DD inclusive.

## Response `200`

Merged meeting calendar across the six banks, chronological by decision_date.

- EnvelopeMacroCbCalendarData
  - `data` MacroCbCalendarData, required — Response payload for GET /api/v1/macro/cb-calendar.
    - `count` integer, required — Number of meeting rows returned after filters.
    - `verified` string, required — The date every schedule below was last read from its official source (YYYY-MM-DD). Static table, refreshed yearly.
    - `banks` CbCalendarBank[], required — The banks covered, with their conventions and refresh sources.
      - `bank` string, required — Bank code used in paths and rows.
      - `name` string, required — Committee or event series name as the bank calls it.
      - `institution` string, required — The central bank.
      - `area` string, required — Economy the policy rate applies to.
      - `timezone` string, required — IANA timezone of decision announcements.
      - `decision_time_local` string, nullable — Local clock time the decision publishes, when the bank fixes one (the BoJ announces on meeting conclusion - null).
      - `schedule_url` string, required — The official page the dates were read from - the refresh source.
      - `meetings_published` integer, required — How many meetings this bank has published in the current table.
    - `meetings` CbMeeting[], required — Meetings across all requested banks, chronological by decision_date.
      - `bank` string, nullable — Bank code (fomc, ecb, boe, boj, snb, riksbank). Present on the merged calendar; absent inside a single bank's payload.
      - `date` string, required — Meeting start day, or the single announcement day (YYYY-MM-DD).
      - `end_date` string, nullable — Final meeting day for multi-day formats (FOMC, ECB, BoJ). Absent for single-day announcements.
      - `decision_date` string, required — The day the policy decision is PUBLISHED - end_date for two-day formats, the announcement day otherwise. Sort key of every calendar view.
      - `type` string, required — scheduled = regular policy meeting or announcement; projections = the decision ships with the bank's own forecast publication (SEP, staff projections, Monetary Policy Report, Outlook Report, conditional inflation forecast).
      - `note` string, nullable — Venue or convention caveat when one applies (for example the Riksbank Executive Board meets the preceding day).
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header. JSON body with a stable `code` distinguishing `missing_api_key` (no header sent) from `invalid_api_key` (header sent, key not accepted); any other 401 source carries the generic `unauthorized` with its detail as `reason`. Plus `hint`. `plan` is always null on 401 - an unauthenticated request has no plan; quota exhaustion is 429, not 401.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

[API](https://skmtc.net/sugra/apis/sugra-api.md) · [All operations](https://skmtc.net/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sugra/sugra-api/versions/4c4530760ba1/schema)
