Skip to main content
GET
/
api
/
v1
/
indices
List stock indexes
curl --request GET \
  --url http://localhost:3000/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

Headers

Authorization
string
required

Bearer token for authentication

Query Parameters

limit
integer

Number of indexes 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

Stock indexes retrieved successfully

indices
object[]
pagination
object