Skip to main content



Market

Supported market data

codestring

Exchange market identifier.

Example: ETHUSDT
viewSymbolstring

Exchange market human readable symbol.

Example: ETH/USDT
expiryinteger | nullnullable

UTC timestamp in milliseconds of market expiration.

Example: null
askfloat | nullnullable

Market ticker ask price

Example: 1.4872
bidfloat | nullnullable

Market ticker bid price

Example: 1.4872
lastfloat | nullnullable

Market ticker last price

Example: 1.4872
currencies object

Market currencies

basestring

Exchange base currency.

Example: ETH
quotestring

Exchange quote currency.

Example: USDT
typestring

Market type.
spot - spot market.
future - futures/swap market.

Possible values: [spot, future]

Example: spot



Market
{
"code": "ETHUSDT",
"viewSymbol": "ETH/USDT",
"expiry": null,
"ask": 1.4872,
"bid": 1.4872,
"last": 1.4872,
"currencies": {
"base": "ETH",
"quote": "USDT"
},
"type": "spot"
}