Get Supported Trading pairs
Request
GET https://custody-example-url/custody/v1/api/integrated/trading-pairs
Parameters
N/A
Response
Field |
Type |
Description |
base_coin |
String |
Base currency, for example, the base currency in the BTCUSDT trading pair is BTC |
quote_coin |
String |
Quote currency, for example, the quote currency in the BTCUSDT trading pair is USDT |
base_precision |
Integer |
Decimal place for base currency |
quote_precision |
Integer |
Decimal place for quote currency |
min_base |
Integer |
Minimum trading amount for base currency |
min_quote |
Integer |
Minimum trading amount for quote currency |
max_base |
Integer |
Maximum trading amount for base currency |
max_quote |
Integer |
Maximum trading amount for quote currency |
support_limit |
Integer |
Is it support limit order? (1-Yes, 0-No) |
Response Example
{
"code": 0,
"data": [
{
"base_coin": "string",
"base_precision": 0,
"max_base": 0,
"max_quote": 0,
"min_base": 0,
"min_quote": 0,
"quote_coin": "string",
"quote_precision": 0,
"support_limit": 0
}
],
"message": "string",
"successful": true
}