Get All Symbols
GET
/api/v2/symbols:::info[Description]
Request a list of available currency pairs for trading via this endpoint. If you want to get the market information of the trading symbol, please use Get All Tickers.
:::
:::tip[Tips]
priceIncrement and quoteIncrement may be adjusted in the future. We will notify you by email and site notifications before adjustments.
:::
Order Type | Follow the rules of minFunds |
---|---|
Limit Buy | [Order Amount * Order Price] >= minFunds |
Limit Sell | [Order Amount * Order Price] >= minFunds |
Market Buy | Order Value >= minFunds |
Market Sell | [Order Amount * Last Price of Base Currency] >= minFunds |
Note:
- API market buy orders (by amount) valued at [Order Amount * Last Price of Base Currency] < minFunds will be rejected.
- API market sell orders (by value) valued at < minFunds will be rejected.
- Take profit and stop loss orders at market or limit prices will be rejected when triggered.
Request
Request samples
Responses
Unique code of a symbol; it will not change after renaming
Name of trading pairs, it will change after renaming
Base currency, e.g. BTC.
Quote currency, e.g. USDT.
The currency of charged fees.
The trading market.
The minimum order quantity required to place an order.
The minimum order funds required to place a market order.
The maximum order size required to place an order.
The maximum order funds required to place a market order.
Quantity increment: The quantity for an order must be a positive integer multiple of this increment. Here, the size refers to the quantity of the base currency for the order. For example, for the ETH-USDT trading pair, if the baseIncrement is 0.0000001, the order quantity can be 1.0000001 but not 1.00000001.
Quote increment: The funds for a market order must be a positive integer multiple of this increment. The funds refer to the quote currency amount. For example, for the ETH-USDT trading pair, if the quoteIncrement is 0.000001, the amount of USDT for the order can be 3000.000001 but not 3000.0000001.
Price increment: The price of an order must be a positive integer multiple of this increment. For example, for the ETH-USDT trading pair, if the priceIncrement is 0.01, the order price can be 3000.01 but not 3000.001.
Specifies the min. order price as well as the price increment.This also applies to quote currency.
Threshold for price protection
The minimum trading amounts
Available for margin or not.
Available for transaction or not.
The maker fee coefficient. The actual fee needs to be multiplied by this coefficient to get the final fee. Most currencies have a coefficient of 1. If set to 0, it means no fee
The taker fee coefficient. The actual fee needs to be multiplied by this coefficient to get the final fee. Most currencies have a coefficient of 1. If set to 0, it means no fee
Whether it is a Special Treatment symbol
The call auction status returns true/false
The lowest price declared in the call auction
The highest bid price in the call auction
The first phase of the call auction starts at (Allow add orders, allow cancel orders)
The second phase of the call auction starts at (Allow add orders, don't allow cancel orders)
The third phase of the call auction starts at (Don't allow add orders, don't allow cancel orders)
Official opening time (end time of the third phase of call auction)
{
"code": "200000",
"data": [
{
"symbol": "BTC-USDT",
"name": "BTC-USDT",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"feeCurrency": "USDT",
"market": "USDS",
"baseMinSize": "0.00001",
"quoteMinSize": "0.1",
"baseMaxSize": "10000000000",
"quoteMaxSize": "99999999",
"baseIncrement": "0.00000001",
"quoteIncrement": "0.000001",
"priceIncrement": "0.1",
"priceLimitRate": "0.1",
"minFunds": "0.1",
"isMarginEnabled": true,
"enableTrading": true,
"feeCategory": 1,
"makerFeeCoefficient": "1.00",
"takerFeeCoefficient": "1.00",
"st": false,
"callauctionIsEnabled": false,
"callauctionPriceFloor": null,
"callauctionPriceCeiling": null,
"callauctionFirstStageStartTime": null,
"callauctionSecondStageStartTime": null,
"callauctionThirdStageStartTime": null,
"tradingStartTime": null
}
]
}