# Kulturdirektoratet — 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.

> Search for Norwegian arts grants and funding schemes, view detailed information about specific grant programs, and look up funding decisions from the Arts Council. Browse the complete Kulturdirektoratet site to discover available grants, eligibility requirements, and past award decisions.

**Category:** Government & Public Data | **Website:** [kulturdirektoratet.no/](https://kulturdirektoratet.no/) | **Docs:** [parse.bot/marketplace/cd415b1f-ed06-4e3c-ae62-c33ae25cf188/kulturdirektoratet-no-api](https://parse.bot/marketplace/cd415b1f-ed06-4e3c-ae62-c33ae25cf188/kulturdirektoratet-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-kulturdirektoratet-no-api-cd415b1f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_tilskuddsordning_detail

Get full details of a specific grant scheme including sections (accordion content), contacts, and description. The slug comes from list_tilskuddsordninger results. Sections map titles to text content. Contacts contain name and optionally email/phone.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Slug of the grant scheme (from list_tilskuddsordninger results[*].slug, e.g. 'amatoerteateraktivitet-i-grupper') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kulturdirektoratet-no-api-cd415b1f/get_tilskuddsordning_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_tilskuddsordninger

List all grant schemes with optional filtering by category, source, group, or search query. Returns all matching schemes in a single page. Each scheme includes a slug that can be passed to get_tilskuddsordning_detail for full information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `fag` | string | No | Filter by subject/category (e.g. 'musikk', 'scenekunst') |
| `grupper` | string | No | Filter by applicant group |
| `kilde` | string | No | Filter by funding source |
| `query` | string | No | Search query to filter grant schemes by name or description |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kulturdirektoratet-no-api-cd415b1f/list_tilskuddsordninger \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"fag":"<string>","grupper":"<string>","kilde":"<string>","query":"<string>"}'
```

### list_vedtak

List grant decisions with pagination and filters. Returns paginated results of funding decisions showing status, applicant, requested/granted amounts, and scheme round. Supports filtering by year, county, source, status, scheme, round, and free-text query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `aar` | integer | No | Filter by year (e.g. 2025) |
| `fylke` | string | No | Filter by county using Norwegian county code. Accepted values: '03' (Oslo), '11' (Rogaland), '15' (Møre og Romsdal), '18' (Nordland), '31' (Østfold), '32' (Akershus), '33' (Buskerud), '34' (Innlandet), '39' (Vestfold), '40' (Telemark), '42' (Agder), '46' (Vestland), '50' (Trøndelag), '55' (Troms), '56' (Finnmark), '99' (Uoppgitt) |
| `kilde` | string | No | Filter by funding source |
| `ordning` | string | No | Filter by grant scheme |
| `page` | integer | No | Page number for pagination (1-based) |
| `query` | string | No | Search query to filter decisions |
| `runde` | string | No | Filter by application round |
| `status` | string | No | Filter by decision status (e.g. 'Innvilget', 'Avslått') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kulturdirektoratet-no-api-cd415b1f/list_vedtak \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"aar":"<integer>","fylke":"<string>","kilde":"<string>","ordning":"<string>","page":"<integer>","query":"<string>","runde":"<string>","status":"<string>"}'
```

### site_search

Search across the entire Kulturdirektoratet website. Returns matching pages with title, content type, excerpt, and URL. Useful for finding publications, events, news, and other content beyond grant schemes and decisions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query keywords |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kulturdirektoratet-no-api-cd415b1f/site_search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
