# Riksbank — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Finance & Markets | **Website:** [www.riksbank.se/en-gb/press-and-published/calendar/](https://www.riksbank.se/en-gb/press-and-published/calendar/) | **Docs:** [parse.bot/marketplace/9a2b6004-1623-4827-ab14-f2c1272629e5/riksbank-se-api](https://parse.bot/marketplace/9a2b6004-1623-4827-ab14-f2c1272629e5/riksbank-se-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-riksbank-se-api-9a2b6004/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_calendar_events

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `month` | integer | No | Month number (1-12) to filter events. When omitted, returns events for all months of the specified year. |
| `year` | string | No | 4-digit calendar year (e.g. 2026, 2027). Defaults to the current year. Only years with published calendars are available (currently 2026 and 2027). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-riksbank-se-api-9a2b6004/get_calendar_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"month":"<integer>","year":"<string>"}'
```
