Riksbank APIriksbank.se ↗
Track Sweden's central bank events and stay informed about monetary policy meetings, speeches, and publications scheduled by Riksbank. Access detailed calendar information to monitor important economic announcements and policy decisions that may impact financial markets.
curl -X GET 'https://api.parse.bot/scraper/ed4707ac-d2a3-48e4-9990-9016ce4b3f96/get_calendar_events?year=2026&month=8' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve Riksbank calendar events for a given year and optional month. Returns both past and future events including monetary policy meetings, speeches, publications, press conferences, and board meetings. When month is omitted, fetches events for all 12 months (12 sequential page requests). Each event includes date, title, time, description, location, organiser, and a detail URL.
| Param | Type | Description |
|---|---|---|
| year | string | 4-digit calendar year (e.g. 2026, 2027). Defaults to the current year. Only years with published calendars are available (currently 2026 and 2027). |
| month | integer | Month number (1-12) to filter events. When omitted, returns events for all months of the specified year. |
{
"type": "object",
"fields": {
"year": "The calendar year as a string",
"month": "The requested month (string) or null if all months were fetched",
"events": "Array of calendar event objects",
"total_events": "Total number of events returned"
},
"sample": {
"data": {
"year": "2026",
"month": "8",
"events": [
{
"date": "19 Aug 2026",
"time": "Wed 09:00",
"title": "Monetary policy meeting: Decision on monetary policy including the policy rate",
"location": "",
"organiser": "",
"detail_url": "https://www.riksbank.se/en-gb/press-and-published/calendar/calendar-2026/2026-08-19/",
"description": "Monetary policy meeting at which the Executive Board takes a decision on monetary policy including the policy rate."
},
{
"date": "24 Aug 2026",
"time": "Mon 14:15",
"title": "Bunge: The Future of Private Capital Markets",
"location": "IVA Conference Centre, Grev Turegatan 16, Stockholm",
"organiser": "Swedish House of Finance & Stockholm School of Economics",
"detail_url": "https://www.riksbank.se/en-gb/press-and-published/calendar/calendar-2026/2026-08-24/",
"description": "First Deputy Governor Aino Bunge takes part in a panel discussion on private capital markets organised by the Swedish House of Finance and the Stockholm School of Economics."
}
],
"total_events": 7
},
"status": "success"
}
}About the Riksbank API
The Riksbank API on Parse exposes 1 endpoint for the publicly available data on riksbank.se. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.