Skip to main content
GET
/
api
/
v1
/
companies
/
{identifier}
/
stories
List Company Stories
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/companies/{identifier}/stories \
  --header 'Authorization: Bearer <token>'
{
  "stories": [
    {
      "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>"
      }
    }
  ],
  "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 stories to return per page (default 25, max 100).

cursor
string

Opaque pagination cursor from a previous response.

Response

200 - application/json

Company stories retrieved successfully

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