Skip to main content
GET
/
api
/
v1
/
stories
/
{id}
Get Story Details
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/stories/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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",
    "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...",
    "updated_at": "2026-03-15T14:00:00.000Z",
    "companies": [
      {
        "id": "uejazctgchj4",
        "name": "AB Volvo (Volvo Group)",
        "ticker": "VOLV-B"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.nordicfinancialnews.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Headers

If-None-Match
string

ETag value from a previous response. Returns 304 Not Modified if the story has not changed.

Path Parameters

id
string
required

Story ID (e.g. sty_abc123def).

Response

Story found

story
object
Last modified on April 20, 2026