Olympus
Market data

Exchange information

Returns trading rules and symbol information for all listed instruments.

GET
/api/v1/exchangeInfo

Returns trading rules and symbol information for all listed instruments.

Response Body

application/json

curl -X GET "http://localhost:3000/api/v1/exchangeInfo"
{
  "timezone": "UTC",
  "serverTime": 1709123456789,
  "symbols": [
    {
      "symbol": "AAPL-USD",
      "status": "TRADING",
      "baseAsset": "AAPL",
      "quoteAsset": "USD",
      "filters": [
        {
          "filterType": "PRICE_FILTER",
          "tickSize": "0.01"
        }
      ]
    }
  ]
}