Get Story Details
curl --request GET \
--url https://nordicfinancialnews.com/api/v1/stories/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://nordicfinancialnews.com/api/v1/stories/{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/stories/{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/stories/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"story": {
"id": "story_volvo_q3",
"title": "Volvo Reports Record Q3 Results",
"summary": "Volvo reported record third-quarter earnings, beating analyst expectations...",
"article_count": 4,
"published_at": "2026-03-15T09:30:00.000Z",
"updated_at": "2026-03-15T14:00:00.000Z",
"article_ids": [
"art_abc123def",
"art_def456ghi"
],
"country": "SE",
"company_ids": [
"uejazctgchj4"
],
"category": {
"id": "<string>",
"name": "<string>"
},
"content": "## Volvo Q3 Results\\n\\nVolvo reported record earnings...",
"companies": [
{
"id": "uejazctgchj4",
"name": "AB Volvo (Volvo Group)",
"ticker": "VOLV-B"
}
]
}
}{
"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"
}Stories
Get Story Details
Returns the full details of a single story, including content in Markdown format, associated articles, and companies. Supports conditional requests via If-None-Match for efficient caching.
GET
/
api
/
v1
/
stories
/
{id}
Get Story Details
curl --request GET \
--url https://nordicfinancialnews.com/api/v1/stories/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://nordicfinancialnews.com/api/v1/stories/{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/stories/{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/stories/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"story": {
"id": "story_volvo_q3",
"title": "Volvo Reports Record Q3 Results",
"summary": "Volvo reported record third-quarter earnings, beating analyst expectations...",
"article_count": 4,
"published_at": "2026-03-15T09:30:00.000Z",
"updated_at": "2026-03-15T14:00:00.000Z",
"article_ids": [
"art_abc123def",
"art_def456ghi"
],
"country": "SE",
"company_ids": [
"uejazctgchj4"
],
"category": {
"id": "<string>",
"name": "<string>"
},
"content": "## Volvo Q3 Results\\n\\nVolvo reported record earnings...",
"companies": [
{
"id": "uejazctgchj4",
"name": "AB Volvo (Volvo Group)",
"ticker": "VOLV-B"
}
]
}
}{
"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 story has not changed.
Path Parameters
Story ID (e.g. sty_abc123def).
Response
Story found
Show child attributes
Show child attributes
Last modified on August 21, 2026
⌘I