Skip to main content
GET
/
api
/
v1
/
indices
/
{identifier}
/
companies
List Index Companies
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/indices/{identifier}/companies \
  --header 'Authorization: Bearer <token>'
{
  "companies": [
    {
      "id": "w55fcw3pbg3p",
      "name": "Volvo Car AB",
      "slug": "VOLCAR-B",
      "ticker": "VOLCAR-B",
      "is_active": true,
      "exchange": {
        "id": "<string>",
        "name": "<string>",
        "mic_code": "<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

Index ID or symbol (e.g. OMXS30)

Query Parameters

limit
integer

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

cursor
string

Opaque pagination cursor from a previous response.

Response

Index companies retrieved successfully

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