Skip to main content
The Nordic Financial News API provides read-only access to translated Nordic financial news articles, AI-generated story clusters, company profiles, and market data.

Base URL

https://nordicfinancialnews.com/api/v1

Authentication

All endpoints require a Bearer token in the Authorization header:
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://nordicfinancialnews.com/api/v1/articles"
See the authentication guide for details on API keys, scopes, and rate limits.

Resources

Browse endpoints using the sidebar navigation. Available resources:
ResourceDescriptionEndpoints
ArticlesTranslated Nordic news articlesList, Get
StoriesAI-generated article clustersList, Get, Articles
CompaniesNordic company profilesList, Get, Articles, Stories
CategoriesNews categoriesList, Get, Articles, Stories
CountriesNordic countriesList, Get, Articles, Stories, Exchanges
ExchangesStock exchangesList, Get, Companies
SearchFull-text search across all resourcesSearch
MetaAPI metadata and capabilitiesGet

Common features

All list endpoints support:
  • Cursor pagination for stable paging through results
  • Field projection to select specific response fields
  • ETag caching on individual resource endpoints
  • Real-time updates via the updated_after parameter (articles and stories)
  • Filtering by country, category, ticker, content type, and date range
  • Full-text search with the q parameter

Response format

All responses are JSON. List endpoints return a resource array and pagination object:
{
  "articles": [...],
  "pagination": {
    "count": 25,
    "next_cursor": "eyJpZCI6..."
  }
}
Errors follow RFC 9457 Problem Details format.