Symbol
Request a list of available currency pairs for trading via this endpoint.
GET /v1/market/symbols
Response
Param | Type | Example | Description |
---|---|---|---|
- | []Symbol | - | A list of Symbol objects containing information about name, base and quote currency and whether it's currently available for trading |
Symbol Object
Param | Type | Example | Description |
---|---|---|---|
symbol | string | "KLV-USDT" | Unique code of a symbol. |
name | string | "KLV-USDT" | Name of trading pairs. |
baseCurrency | string | "KLV" | Base currency,e.g. KLV. |
quoteCurrency | string | "USDT" | Base currency,e.g. USDT. |
enableTrading | boolean | true | Available 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
}
]
}