Skip to main content
GET
/
api
/
v1
/
exchanges
/
{identifier}
Get Exchange Details
curl --request GET \
  --url https://nordicfinancialnews.com/api/v1/exchanges/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "exchange": {
    "id": "exch_nasdaq1",
    "name": "Nasdaq Stockholm",
    "mic_code": "XSTO",
    "acronym": "NASDAQ",
    "country": {
      "id": "<string>",
      "name": "<string>",
      "iso2_code": "<string>"
    },
    "operating_mic_code": "XSTO",
    "currency": "SEK",
    "ticker_suffix": "ST",
    "timezone": "Europe/Stockholm",
    "city": "<string>",
    "indices": [
      {
        "id": "<string>",
        "name": "<string>",
        "symbol": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Path Parameters

identifier
string
required

Exchange ID or MIC code (e.g. XSTO)

Response

Exchange retrieved successfully

exchange
object
required
Last modified on June 4, 2026