Skip to main content

Markets Information

Retrieve supported markets.

This API can be publicly accessed (without any security headers). If you access with Read permission authentication, the result will be much more accurate by account setting.

The symbol, symbols, and types parameters can't be used in combination with each other.

OptionsExample
No parameter/markets
symbol/markets?symbol=BTC-USDT
symbols/markets?symbols=["BTC-USDT","ETH-USDT","BTC-PERP-USDT"]
types/markets?types=["FuturesPerpetual","FuturesTimeBased"]

Request Parameters​

NameTypeRequiredDescription
symbolStringNoSymbol
symbolsStringNoMultiple symbols
typesStringNoMultiple types

Response Content​

Successful response

example
GEThttps://api.btse.com/public-api/market/v1/markets

Response

{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": {
"symbols": [
{
"symbol": "BTC-USDT",
"type": "Spot",
"category": "CRYPTO",
"tradeCurrency": "BTC",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"active": true,
"minOrderPrice": "0.5",
"minPriceIncrement": "0.5",
"pricePrecision": 1,
"minOrderSize": "0.00001",
"maxOrderSize": "2000",
"minSizeIncrement": "0.00001",
"sizePrecision": 5
}
]
}
}