Symbol Information List
Get spot instruments informations
Http Request
GET
/api/spot/instruments/trade_pair_list
Request Frequency Restriction:
- 1times / 1second
Postman
pay attention to replace "restful_base_endpoint"
Request Parameters
None
Response fields description
Name | Type | Description |
---|---|---|
trade_pair_name | string | currency pair name, such as BTC/USDT |
base_asset | string | underlying assets, such as BTC |
quote_asset | string | valuation assets, such as USDT |
price_precision | string | price precision |
amount_precision | string | quantity precision |
taker_fee_rate | string | taker fee rate |
maker_fee_rate | string | maker fee rate |
min_amount | string | minimum number of delegates |
price_fluctuation | string | price fluctuation limit |
min_notional | string |
Response
{
"code": 200,
"message": null,
"data": [
{
"trade_pair_name": "1INCH/USDT",
"base_asset": "1INCH",
"quote_asset": "USDT",
"price_precision": "3",
"amount_precision": "1",
"taker_fee_rate": "0.001",
"maker_fee_rate": "0.001",
"min_amount": "0.1",
"price_fluctuation": "0.20",
"min_notional": "10"
},
{
"trade_pair_name": "AAVE/USDT",
"base_asset": "AAVE",
"quote_asset": "USDT",
"price_precision": "1",
"amount_precision": "3",
"taker_fee_rate": "0.001",
"maker_fee_rate": "0.001",
"min_amount": "0.01",
"price_fluctuation": "0.50",
"min_notional": "10"
}
]
}