Get Article Details
curl --request GET \
--url https://nordicfinancialnews.com/api/v1/articles/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://nordicfinancialnews.com/api/v1/articles/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)require 'uri'
require 'net/http'
url = URI("https://nordicfinancialnews.com/api/v1/articles/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyconst options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://nordicfinancialnews.com/api/v1/articles/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"article": {
"id": "art_abc123def",
"title": "Volvo Reports Record Q3 Earnings",
"article_url": "https://di.se/articles/volvo-q3-2026",
"content_type": "news",
"published_at": "2026-03-15T09:30:00.000Z",
"updated_at": "2026-03-15T10:00:00.000Z",
"category": {
"id": "cat_earnings1",
"name": "Earnings & Financial Results"
},
"source": {
"id": "abc123def456",
"name": "Dagens Industri",
"domain": "di.se"
},
"company_ids": [
"uejazctgchj4"
],
"country": "SE",
"source_title": "Volvo rapporterar rekordresultat för Q3",
"summary": "Volvo reported record Q3 earnings driven by strong truck demand...",
"story_ids": [
"story_volvo_q3"
],
"companies": [
{
"id": "uejazctgchj4",
"name": "AB Volvo (Volvo Group)",
"ticker": "VOLV-B",
"is_primary": true
}
],
"key_points": [
"Revenue up 15% year-over-year",
"Strong truck demand in Europe"
]
}
}{
"type": "https://docs.nordicfinancialnews.com/problems/auth-invalid",
"title": "Unauthorized",
"status": 401,
"detail": "Missing or invalid API key",
"instance": "urn:request:abc123"
}{
"type": "https://docs.nordicfinancialnews.com/problems/not-found",
"title": "Not Found",
"status": 404,
"detail": "The requested resource could not be found",
"instance": "urn:request:abc123"
}Articles
Get Article Details
Returns the details of a single article: an English headline, a short summary, key points, and associated companies, along with article_url pointing to the full original-language article at the source. Supports conditional requests via If-None-Match for efficient caching.
GET
/
api
/
v1
/
articles
/
{id}
Get Article Details
curl --request GET \
--url https://nordicfinancialnews.com/api/v1/articles/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://nordicfinancialnews.com/api/v1/articles/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)require 'uri'
require 'net/http'
url = URI("https://nordicfinancialnews.com/api/v1/articles/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyconst options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://nordicfinancialnews.com/api/v1/articles/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"article": {
"id": "art_abc123def",
"title": "Volvo Reports Record Q3 Earnings",
"article_url": "https://di.se/articles/volvo-q3-2026",
"content_type": "news",
"published_at": "2026-03-15T09:30:00.000Z",
"updated_at": "2026-03-15T10:00:00.000Z",
"category": {
"id": "cat_earnings1",
"name": "Earnings & Financial Results"
},
"source": {
"id": "abc123def456",
"name": "Dagens Industri",
"domain": "di.se"
},
"company_ids": [
"uejazctgchj4"
],
"country": "SE",
"source_title": "Volvo rapporterar rekordresultat för Q3",
"summary": "Volvo reported record Q3 earnings driven by strong truck demand...",
"story_ids": [
"story_volvo_q3"
],
"companies": [
{
"id": "uejazctgchj4",
"name": "AB Volvo (Volvo Group)",
"ticker": "VOLV-B",
"is_primary": true
}
],
"key_points": [
"Revenue up 15% year-over-year",
"Strong truck demand in Europe"
]
}
}{
"type": "https://docs.nordicfinancialnews.com/problems/auth-invalid",
"title": "Unauthorized",
"status": 401,
"detail": "Missing or invalid API key",
"instance": "urn:request:abc123"
}{
"type": "https://docs.nordicfinancialnews.com/problems/not-found",
"title": "Not Found",
"status": 404,
"detail": "The requested resource could not be found",
"instance": "urn:request:abc123"
}Authorizations
API Key authentication using Bearer token
Headers
ETag value from a previous response. Returns 304 Not Modified if the article has not changed.
Path Parameters
Article ID (e.g. art_abc123def).
Response
Article found
Show child attributes
Show child attributes
Last modified on August 21, 2026
⌘I