# Norges Bank — 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.

> Stay informed about Norges Bank's upcoming policy rate decisions, speeches, and other scheduled events by accessing their official calendar. Plan your financial strategy around key announcements and central bank activities with real-time visibility into important dates and occasions.

**Category:** Finance & Markets | **Website:** [www.norges-bank.no/en/news-events/calendar/?skip=20](https://www.norges-bank.no/en/news-events/calendar/?skip=20) | **Docs:** [parse.bot/marketplace/6453ae87-8a5d-47df-858d-b0e942e93e4e/norges-bank-no-api](https://parse.bot/marketplace/6453ae87-8a5d-47df-858d-b0e942e93e4e/norges-bank-no-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-norges-bank-no-api-6453ae87/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_calendar_events

Returns upcoming calendar events from Norges Bank. Events include policy rate decisions, speeches, and other scheduled publications. Results are ordered chronologically from the nearest future date. Supports pagination via skip/limit and optional filtering by event type. Each API call fetches up to limit results, paginating internally if needed (max 10 per upstream page).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_type` | string | No | Filter events by type. When omitted, all event types are returned. |
| `limit` | integer | No | Maximum number of events to return. Must be between 1 and 100. |
| `skip` | integer | No | Number of events to skip from the beginning of the result set for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-norges-bank-no-api-6453ae87/get_calendar_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_type":"<string>","limit":"<integer>","skip":"<integer>"}'
```
