Get Symbols List

Request via this endpoint to get a list of available currency pairs for trading. If you want to get the market information of the trading symbol, please use Get All Tickers.

HTTP REQUEST

GET /api/v2/symbols

Example

GET /api/v2/symbols

[
  {
    "symbol": "XLM-USDT",
    "name": "XLM-USDT",
    "baseCurrency": "XLM",
    "quoteCurrency": "USDT",
    "feeCurrency": "USDT",
    "market": "USDS",
    "baseMinSize": "0.1",
    "quoteMinSize": "0.01",
    "baseMaxSize": "10000000000",
    "quoteMaxSize": "99999999",
    "baseIncrement": "0.0001",
    "quoteIncrement": "0.000001",
    "priceIncrement": "0.000001",
    "priceLimitRate": "0.1",
    "minFunds": "0.1",
    "isMarginEnabled": true,
    "enableTrading": true
  },
  {
    "symbol": "VET-USDT",
    "name": "VET-USDT",
    "baseCurrency": "VET",
    "quoteCurrency": "USDT",
    "feeCurrency": "USDT",
    "market": "USDS",
    "baseMinSize": "10",
    "quoteMinSize": "0.01",
    "baseMaxSize": "10000000000",
    "quoteMaxSize": "99999999",
    "baseIncrement": "0.0001",
    "quoteIncrement": "0.000001",
    "priceIncrement": "0.0000001",
    "priceLimitRate": "0.1",
    "minFunds": "0.1",
    "isMarginEnabled": true,
    "enableTrading": true
  }
]
REQUEST URL

This endpoint support Spot URL

REQUEST RATE LIMIT

Public weight:4

PARAMETERS
Param Type Mandatory Description
market String No The trading market.
RESPONSES
Param Description
symbol unique code of a symbol, it would not change after renaming
name Name of trading pairs, it would change after renaming
baseCurrency Base currency,e.g. BTC.
quoteCurrency Quote currency,e.g. USDT.
market The trading market.
baseMinSize The minimum order quantity requried to place an order.
quoteMinSize The minimum order funds required to place a market order.
baseMaxSize The maximum order size required to place an order.
quoteMaxSize The maximum order funds required to place a market order.
baseIncrement The increment of the order size. The value shall be a positive multiple of the baseIncrement.
quoteIncrement The increment of the funds required to place a market order. The value shall be a positive multiple of the quoteIncrement.
priceIncrement The increment of the price required to place a limit order. The value shall be a positive multiple of the priceIncrement.
feeCurrency The currency of charged fees.
enableTrading Available for transaction or not.
isMarginEnabled Available for margin or not.
priceLimitRate Threshold for price portection
minFunds the minimum spot and margin trading amounts
  • The baseMinSize and baseMaxSize fields define the min and max order size.

  • The priceIncrement field specifies the min order price as well as the price increment.This also applies to quote currency.

The order price must be a positive integer multiple of this priceIncrement (i.e. if the increment is 0.01, the 0.001 and 0.021 order prices would be rejected).

priceIncrement and quoteIncrement may be adjusted in the future. We will notify you by email and site notifications before adjustment.

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.