Skip to main content
GET
/
api
/
v1
/
companies
/
{identifier}
/
articles
List Company Articles
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/companies/{identifier}/articles \
  --header 'Authorization: Bearer <token>'
{
  "articles": [
    {
      "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"
    }
  ],
  "pagination": {
    "count": 123,
    "next_cursor": "<string>"
  }
}

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

Path Parameters

identifier
string
required

Company ID or ticker symbol

Query Parameters

limit
integer

Number of articles to return per page (default 25, max 100).

cursor
string

Opaque pagination cursor from a previous response.

primary_only
boolean

When true, only return articles where this company is the primary subject (not just mentioned).

Response

200 - application/json

Company articles retrieved successfully

articles
object[]
required
pagination
object
Last modified on April 20, 2026