Skip to main content
GET
/
api
/
v1
/
exchanges
List Exchanges
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/exchanges \
  --header 'Authorization: Bearer <token>'
{
  "exchanges": [
    {
      "id": "exch_nasdaq1",
      "name": "Nasdaq Stockholm",
      "mic_code": "XSTO",
      "acronym": "NASDAQ",
      "country": {
        "id": "<string>",
        "name": "<string>",
        "iso2_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

Query Parameters

limit
integer

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

cursor
string

Opaque pagination cursor from a previous response.

country
string

Filter by country using ISO 3166-1 alpha-2 code.

fields
string

Comma-separated list of fields to include in the response. Available fields: id, name, mic_code, acronym, country.

Response

Exchanges retrieved successfully

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