List supported trading pairs
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
List supported trading pairs
Authorizations
An API key associated with a security role
Response
Successfully returned trading pairs
Minimum array length:
1Example:
[
{
"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"
}
]
