Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    AssetType AssetType Route The of the instrument to get.
    Uic Uic Route The Universal Instrument Code (UIC) of the instrument to get.
  • Response Parameters

    View Response Codes
    Name Type Description
    Sessions InstrumentSession [] Gets instrument's trade sessions
    TimeZone Integer Gets the time zone of the exchange an instrument is traded on.
    TimeZoneAbbreviation String Gets the time zone's abbreviation.
    TimeZoneOffset String Gets the time zone offset, relative to UTC.
  • Request Example

    Request URL
    GET /ref/v1/instruments/tradingschedule/22/FxSpot
  • Response Example

    Response body
    {
      "Sessions": [
        {
          "EndTime": "2021-05-21T00:00:00Z",
          "StartTime": "2021-05-21T00:00:00Z",
          "State": "PitTrading"
        }
      ],
      "TimeZone": 99,
      "TimeZoneAbbreviation": "stringValue",
      "TimeZoneOffset": "2024-04-22T00:00:00.000008Z"
    }