Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    $skip Integer Query-String The number of entries to skip from the beginning of the collection
    $top Integer Query-String The number of entries to return from the beginning of the collection
  • Response Parameters

    View Response Codes
    Name Type Description
    __count Number The total count of items in the feed.
    __next String The link for the next page of items in the feed.
    Data ExchangeDetails [] The collection of entities for this feed.
    MaxRows Number The maximum number of rows that can be returned (if applicable).
  • Request Example

    Request URL
    GET /ref/v1/exchanges?$skip=1&$top=1
  • 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": "2024-04-22T00:00:00Z"
        }
      ]
    }