Discover/Kulturdirektoratet API
live

Kulturdirektoratet APIkulturdirektoratet.no

Access Norwegian Arts Council grant schemes, funding decisions, and site-wide search via 4 endpoints. Filter by category, county, year, and status.

This API takes change requests — .
Endpoint health
verified 7d ago
site_search
list_tilskuddsordninger
list_vedtak
get_tilskuddsordning_detail
4/4 passing latest checkself-healing
Endpoints
4
Updated
28d ago

What is the Kulturdirektoratet API?

This API exposes 4 endpoints covering the Norwegian Arts Council (Kulturdirektoratet) website, including grant scheme listings, full scheme details, funding decisions, and site-wide search. The list_tilskuddsordninger endpoint returns all matching grant programs with name, description, slug, status, and deadline fields, optionally filtered by subject area, funding source, or applicant group. The list_vedtak endpoint surfaces paginated funding decisions with applicant names, requested amounts, granted amounts, and decision status.

Try it
Filter by subject/category (e.g. 'musikk', 'scenekunst')
Filter by funding source
Search query to filter grant schemes by name or description
Filter by applicant group
api.parse.bot/scraper/51c47160-ab54-4e47-8e10-b44c5c77ef02/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/51c47160-ab54-4e47-8e10-b44c5c77ef02/list_tilskuddsordninger?fag=musikk&kilde=Norsk+kulturfond&query=musikk&grupper=Enkeltpersoner' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace kulturdirektoratet-no-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.kulturdirektoratet_api import Kulturdirektoratet, GrantSchemeSummary, GrantScheme, Contact, Decision, SitePage

client = Kulturdirektoratet()

# List music grant schemes and navigate to full details
for scheme in client.grantschemesummaries.list(fag="musikk"):
    print(scheme.name, scheme.slug, scheme.status, scheme.deadline)

# Get full details for a known scheme via constructible navigation
detail = client.grantschemesummary("amatoerteateraktivitet-i-grupper").details()
print(detail.name, detail.url, detail.description)
for contact in detail.contacts:
    print(contact.name, contact.phone, contact.email)

# List approved funding decisions with pagination
for decision in client.decisions.list(status="Innvilget", aar=2025, limit=20):
    print(decision.status, decision.applicant, decision.requested_amount, decision.granted_amount)

# Search across the entire site
for page in client.sitepages.search(query="kunstnerstipend"):
    print(page.title, page.type, page.excerpt, page.url)
All endpoints · 4 totalmissing one? ·

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.

Input
ParamTypeDescription
fagstringFilter by subject/category (e.g. 'musikk', 'scenekunst')
kildestringFilter by funding source
querystringSearch query to filter grant schemes by name or description
grupperstringFilter by applicant group
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of matching grant schemes",
    "items": "array of grant scheme summaries with name, description, url, slug, and details (status, deadline)"
  },
  "sample": {
    "data": {
      "count": 68,
      "items": [
        {
          "url": "https://www.kulturdirektoratet.no/tilskuddsordninger/fonograminnspillinger",
          "name": "Musikk – særskilte innspillingsprosjekter",
          "slug": "fonograminnspillinger",
          "details": {
            "status": "lock_openÅpen",
            "deadline": "Søknadsfrist 15. juni 2026 kl. 13:00"
          },
          "description": "Tilskudd til å spille inn og gi ut musikk med særskilt behov for støtte."
        }
      ]
    },
    "status": "success"
  }
}

About the Kulturdirektoratet API

Grant Scheme Endpoints

list_tilskuddsordninger returns a full list of grant schemes without pagination. Each item includes name, description, url, slug, status, and deadline. You can narrow results using fag (subject area, e.g. musikk or scenekunst), kilde (funding source), grupper (applicant group), or a free-text query. The count field tells you how many schemes matched. To retrieve full details — sections, contacts, and extended description — pass the slug from any list result to get_tilskuddsordning_detail, which returns structured sections (a map of section title to text), a contacts array with name, email, and phone fields, and a short description string.

Funding Decisions

list_vedtak provides paginated grant decision records. Each decision object exposes status (e.g. Innvilget or Avslått), applicant, requested_amount, granted_amount, and scheme_round. Filters include aar (year), fylke (Norwegian county code such as 03 for Oslo or 11 for Rogaland), status, ordning (specific grant scheme), runde (application round), and a free-text query. The total_results field is a string and may be null on some responses.

Site-Wide Search

site_search accepts a required query string and returns matching pages across the full Kulturdirektoratet website, not just grant schemes. Each result includes title, type, excerpt, and url. This is useful for locating policy documents, news, or other content types that the more specific endpoints do not cover.

Reliability & maintenanceVerified

The Kulturdirektoratet API is a managed, monitored endpoint for kulturdirektoratet.no — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when kulturdirektoratet.no changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official kulturdirektoratet.no API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a grant discovery tool that filters Norwegian arts funding by subject (fag) such as film, music, or performing arts.
  • Track annual funding outcomes by querying list_vedtak filtered by aar and status to compare approved versus rejected applications.
  • Generate county-level funding reports by filtering list_vedtak with Norwegian county codes via the fylke parameter.
  • Retrieve contact details and eligibility sections for a specific grant scheme using get_tilskuddsordning_detail and its contacts and sections fields.
  • Monitor grant scheme deadlines by periodically calling list_tilskuddsordninger and checking the deadline field on each item.
  • Search the full Kulturdirektoratet site via site_search to surface policy documents or news not covered by scheme-specific endpoints.
  • Compare requested versus granted amounts across applicants in a particular scheme round using granted_amount and requested_amount from list_vedtak.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Kulturdirektoratet have an official public developer API?+
No. Kulturdirektoratet does not publish a documented public developer API for its grant data. This Parse API provides structured access to that data.
What does list_vedtak actually return, and how do I filter by county?+
Each item in the items array includes status, applicant, requested_amount, granted_amount, and scheme_round. To filter by county, pass the two-digit Norwegian county code as the fylke parameter — for example 03 for Oslo, 11 for Rogaland, or 15 for Møre og Romsdal. Multiple filters (aar, ordning, runde, status, query) can be combined in the same request.
Does get_tilskuddsordning_detail return the full application form or uploaded attachments?+
No. The endpoint returns structured text content: name, description, a sections map of titled text blocks, and a contacts array with name, email, and phone. Application forms and file attachments are not included. You can fork this API on Parse and revise it to add an endpoint targeting those resources if the source page exposes them.
How does the total_results field behave in list_vedtak pagination?+
total_results is returned as a string rather than an integer, and the field may be null on certain responses. Use the page parameter to step through results. There is no explicit page-count field, so you will need to iterate until fewer results than expected are returned.
Does the API cover historical funding decisions from before 2020?+
The list_vedtak endpoint accepts an aar (year) filter, but the available historical range depends on what Kulturdirektoratet publishes on their decisions pages. Coverage of years before 2020 is not guaranteed. You can fork this API on Parse and revise it to test and document the actual year range available from the source.
Page content last updated . Spec covers 4 endpoints from kulturdirektoratet.no.
Related APIs in Government PublicSee all →
arts.ca.gov API
Discover California arts funding opportunities by browsing grant programs, searching awarded grantees, and accessing resources from the California Arts Council. Find relevant grants and grantee information while staying updated with the latest news and resources in California's arts funding landscape.
nrk.no API
Access the latest news from Norway's leading broadcaster NRK.no, including front-page stories, category-specific articles, regional news, and breaking news updates through a unified search and browsing interface. Stay informed with full article content, RSS feeds, and real-time news ticker notifications across all major topics.
doffin.no API
Search for public procurement tenders across Norway and retrieve detailed information about bidding opportunities, including tender specifics, CPV category codes, and location data. Stay informed about government contracts and procurement notices from the official Norwegian national database.
sundance.org API
Discover and explore Sundance Institute film grants and funding opportunities, including detailed program information, eligibility criteria, application requirements, and award details from the official Sundance portal. List all active funding programs and retrieve comprehensive details for any specific grant.
nav.no API
Search and browse job listings from Norway's official job board with detailed filtering by location, sector, education level, and other criteria. Get comprehensive job details and explore available opportunities across the Norwegian labor market.
fotball.no API
Get live match scores, search matches by team, and view tournament standings and national team information from Norwegian football competitions. Track today's matches, access detailed match information, and browse regional football data all in one place.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
regnskapstall.no API
Search Norwegian companies and retrieve their financial statements, ownership details, roles, competitors, and regulatory announcements all in one place. Get comprehensive company overviews including registration data and financial metrics to research businesses and track new market entries.
Kulturdirektoratet API – Norwegian Arts Council · Parse