Skip to main content
GET
/
api
/
v1
/
indices
List Indices
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/indices \
  --header 'Authorization: Bearer <token>'
{
  "indices": [
    {
      "id": "idx_omxs30abc",
      "name": "OMX Stockholm 30",
      "symbol": "OMXS30",
      "pan_nordic": false,
      "exchange": {
        "id": "<string>",
        "name": "<string>",
        "mic_code": "<string>"
      }
    }
  ],
  "pagination": {
    "count": 123,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Query Parameters

limit
integer

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

cursor
string

Opaque pagination cursor from a previous response.

exchange
string

Filter by exchange MIC code.

fields
string

Comma-separated list of fields to include in the response. Available fields: id, name, symbol, pan_nordic, exchange.

Response

Indices retrieved successfully

indices
object[]
pagination
object
Last modified on April 20, 2026