The Nordic Financial News API supports field projection on all list and detail endpoints. Use the fields query parameter to request only the fields you need. Selecting specific fields reduces payload size and optimizes database queries.
How to use field projection
Pass a comma-separated list of field names in the fields query parameter:
curl -H "Authorization: Bearer $API_KEY" \
"https://nordicfinancialnews.com/api/v1/articles?fields=id,title,published_at,content_type"
Available fields by resource
The following fields can be requested with the fields parameter for each Nordic Financial News API resource type.
Articles
id, title, article_url, content_type, published_at, category, source, company_ids, country
Stories
id, title, summary, published_at, article_count, article_ids, country, category, company_ids
Companies
id, name, slug, ticker, exchange
Countries
id, name, iso2_code
Exchanges
id, name, mic_code, acronym, country
Indices
id, name, symbol, pan_nordic, exchange
Categories
id, name
Sources
id, name, domain, country
Field projection is especially useful with real-time updates to minimize bandwidth when polling frequently. Last modified on April 18, 2026