Endpoint Parameters
-
Request parameters
Name Type Origin Description $skip Int Query-String Optional number of elements to skip. $top Int Query-String Optional number of elements to retrieve. -
Response Parameters
View Response CodesName Type Description AllDay Bool Is exchange open or closed all day? CountryCode String The ISO 3166-2 country code of the exchange's country. Currency String The base currency of the exchange. ExchangeId String The unique ID of the exchange. ExchangeSessions ExchangeSession [] The exchange start and end times in UTC. IsoMic String ISO 10383 Market Identifier Code. A single operating exchange (see `OperatingMIC`) can have one or more individual (sub)markets. Mic String Market Identifier Code used by Saxo to identify a specific market, which can be different from `IsoMic` and is used in instrument symbols and as price source fields. Name String The name of the exchange. OperatingMic String ISO 10383 Operating Market Identifier Code, which identifies the operating exchange.A single operating exchange can have one or more individual markers, identified by their own MICs (see `IsoMic`). PriceSourceName String The name of the price source. TimeZone Int The exchange's time zone. TimeZoneAbbreviation String The exchange's time zone abbreviation. TimeZoneId String Exchange's TimeZone TimeZoneOffset TimeSpan The time zone offset from UTC. -
Request Example
Request URL
GET ref/v1/exchanges/?$top=99&$skip=99
-
Response Example
Response body
{ "__next": "/openapi/....../?$top=1&$skip=1", "Data": [ { "CountryCode": "ES", "Currency": "EUR", "ExchangeId": "SIBE", "IsoMic": "XMAD", "Mic": "XMCE", "Name": "BME Spanish Exchanges", "OperatingMic": "BMEX", "TimeZone": 4, "TimeZoneOffset": "00:00:00" } ] }