Skip to main content
GET
/
api
/
v1
/
articles
/
{id}
Get Article Details
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/articles/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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",
    "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...",
    "updated_at": "2026-03-15T10:00:00.000Z",
    "story_ids": [
      "story_volvo_q3"
    ],
    "companies": [
      {
        "id": "uejazctgchj4",
        "name": "AB Volvo (Volvo Group)",
        "ticker": "VOLV-B"
      }
    ],
    "key_points": [
      "Revenue up 15% year-over-year",
      "Strong truck demand in Europe"
    ]
  }
}

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 article has not changed.

Path Parameters

id
string
required

Article ID (e.g. art_abc123def).

Response

Article found

article
object
Last modified on April 20, 2026