Skip to main content
GET
/
api
/
v1
/
exchanges
/
{identifier}
Get exchange details
curl --request GET \
  --url http://localhost:3000/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",
    "website": "<string>",
    "city": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Headers

Authorization
string
required

Bearer token for authentication

Path Parameters

identifier
string
required

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

Response

Exchange retrieved successfully

exchange
object
required