nrk.no APInrk.no ↗
Access NRK.no news via API: front page, category, regional articles, full content, search, and breaking news ticker. 7 endpoints, Norwegian language.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/eeefe3a2-5a58-4c4e-a7bd-1bb2fdd97c30/get_front_page_articles' \ -H 'X-API-Key: $PARSE_API_KEY'
Extract articles from the NRK.no front page RSS feed in display order. Returns the top stories currently featured on nrk.no.
No input parameters required.
{
"type": "object",
"fields": {
"articles": "array of article objects with id, title, url, summary, published, categories, author, image_url, and position"
},
"sample": {
"data": {
"articles": [
{
"id": "1.17868052",
"url": "https://www.nrk.no/nyheter/fredsprisvinner-aung-san-suu-kyi-overfort-til-husarrest-1.17868052",
"title": "Fredsprisvinner Aung San Suu Kyi overført til husarrest",
"author": "",
"summary": "Myanmars tidligere leder, Aung San Suu Kyi (80), er flyttet fra fengsel til husarrest.",
"position": 1,
"image_url": "https://gfx.nrk.no/kkP9-xHG8UM4Jyf1h9sbnA8oAP_NXEO_Au3nfnKvu7wg.jpg",
"published": "Fri, 01 May 2026 01:54:39 GMT",
"categories": [
"Myanmar"
]
}
]
},
"status": "success"
}
}About the nrk.no API
The NRK.no API provides 7 endpoints for retrieving news content from Norway's public broadcaster, covering front-page headlines, category feeds, regional news, and full article bodies. The get_article_detail endpoint returns the complete article including body_html, lead, tags, authors, published, and modified timestamps. Search across NRK's archive using search_articles with keyword queries and pagination support.
What the API Covers
This API exposes NRK.no's news content across seven endpoints. Front-page content is available through get_front_page_articles and get_top_stories_rss, both of which return an array of article objects containing id, title, url, summary, published, categories, author, image_url, and position. These two endpoints return equivalent data and reflect the current display order on nrk.no.
Category and Regional Feeds
get_category_articles accepts a category parameter using NRK section slugs — confirmed values include sport, kultur, urix, nyheter, and norge. Similarly, get_regional_news accepts a region slug such as vestland, trondelag, tromsogfinnmark, rogaland, and ostfold to pull region-specific article lists. Both endpoints return the same article object shape plus a category or region string echoing the requested slug.
Full Article Content and Search
get_article_detail fetches complete article content by either url (e.g. a full https://www.nrk.no/... URL) or article_id in the format 1.XXXXXXXX — at least one must be provided. The response includes body_html with the full article body, lead text, tags array, authors array, and both published and modified ISO 8601 timestamps. search_articles takes a required query string and optional from and size integers for pagination, returning results with id, title, url, summary, and date.
Breaking News Ticker
get_latest_news_ticker returns the current breaking news items from NRK's front-page ticker. Each item exposes only a title string — no URLs or timestamps are included in the ticker response.
- Monitor NRK's front-page headlines in real time using
get_front_page_articlesand trackpositionchanges over time. - Build a Norwegian-language news aggregator pulling from multiple categories via
get_category_articleswith slugs likesport,kultur, andurix. - Retrieve full article
body_htmlandauthorsviaget_article_detailfor NLP analysis or text summarization pipelines. - Track breaking news alerts by polling
get_latest_news_tickerand surfacing newtitleentries. - Paginate NRK's archive search using
search_articleswithfromandsizeto build a research corpus on a specific topic. - Aggregate regional Norwegian news by cycling through region slugs in
get_regional_newsfor multi-region dashboards. - Extract article
tagsandcategoriesfromget_article_detailresponses to build topic classification training data.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does NRK have an official developer API?+
What does `get_article_detail` return beyond what the list endpoints provide?+
get_article_detail returns fields not available in the feed endpoints: body_html (full article body as HTML), lead (intro paragraph), tags (array of tag strings), authors (array of author name strings), and a modified timestamp alongside published. List endpoints return only summary, not the full body.Does the breaking news ticker include URLs or timestamps for each item?+
get_latest_news_ticker returns only an array of objects each containing a title string. There are no URLs, IDs, or timestamps in the ticker response. You can fork this API on Parse and revise it to add an endpoint that resolves ticker titles to full article URLs.Are NRK TV or podcast/audio catalog data available through this API?+
How does pagination work in `search_articles`, and are there known limits on result size?+
search_articles accepts from (start index, integer) and size (number of results, integer) alongside the required query string. The API documentation does not specify a maximum size value, so large values may return fewer results than requested depending on how many matches exist.