Skip to main content

Symbol

Request a list of available currency pairs for trading via this endpoint.

GET /v1/market/symbols

Response

ParamTypeExampleDescription
-[]Symbol-A list of Symbol objects containing information about name, base and quote currency and whether it's currently available for trading

Symbol Object

ParamTypeExampleDescription
symbolstring"KLV-USDT"Unique code of a symbol.
namestring"KLV-USDT"Name of trading pairs.
baseCurrencystring"KLV"Base currency,e.g. KLV.
quoteCurrencystring"USDT"Base currency,e.g. USDT.
enableTradingbooleantrueAvailable for transaction.

Response Example

{
"success": true,
"data": [
{
"symbol": "LTC-USDT",
"name": "LTC-USDT",
"baseCurrency": "LTC",
"quoteCurrency": "USDT",
"enableTrading": true
},
{
"symbol": "KLV-USDT",
"name": "KLV-USDT",
"baseCurrency": "KLV",
"quoteCurrency": "USDT",
"enableTrading": true
}
]
}