v1

latestOpenAPI 3.0.02026-08-04134348905.1 KB
Trading

List supported trading pairs

Permissions required: Execute trades or Read trade activity

List all of the supported trading pairs for your organization. Each trading pair object includes a description and trading symbol (ex. BTC-USD), which usually corresponds to two asset ticker symbols. Optionally, a trading pair object includes a reference data object that details the trading precision context: minimum size increment and price increment.

get/trading/pairs

Response

Successfully returned trading pairs

Example response

{
  "data": [
    {
      "pair": "BTC-USD",
      "description": "Buy BTC using USD, or Sell BTC for USD",
      "referenceData": {
        "baseAssetType": "BTC",
        "baseSizeIncrement": "0.001",
        "quoteAssetType": "USD",
        "quoteSizeIncrement": "0.01",
        "priceIncrement": "0.00000001",
        "minimumOrderSize": "0.005",
        "lastUpdateTime": "2022-08-24T18:00:53.471Z"
      }
    },
    {
      "pair": "ETH-USD",
      "description": "Buy ETH using USD, or Sell ETH for USD",
      "referenceData": {
        "baseAssetType": "ETH",
        "baseSizeIncrement": "0.001",
        "quoteAssetType": "USD",
        "quoteSizeIncrement": "0.01",
        "priceIncrement": "0.00000001",
        "minimumOrderSize": "0.05",
        "lastUpdateTime": "2022-08-24T18:00:53.471Z"
      }
    },
    {
      "pair": "BTC-ETH",
      "description": "Buy BTC using ETH, or Sell BTC for ETH"
    }
  ]
}