v1
latestOpenAPI 3.1.02026-07-241653251.3 MBList symbol data
Retrieves a list of symbols and their market data.
Query parameters
The underlying asset in the trading pair. E.g. BTC in the pair BTC/USD.
The underlying asset symbol for the requested market data. For example, BTC or ETH.
The quoted currency in the trading pair. E.g. USD in the pair BTC/USD.
Quoted currency symbol. For example, USD or EUR. This is the currency in which the price is quoted.
Headers
HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.
Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.
Response
Market data for the requested underlying/quoted pairs. Structured as an array of [underlyingSymbol, { marketDataMap: [[quotedSymbol, SymbolData], ...] }] tuples.
Example response
[
[
"BTC",
{
"marketDataMap": [
[
"USD",
{
"underlyingSymbol": "BTC",
"quotedSymbol": "USD",
"price": {
"value": "63523.1267818274"
},
"lastTimestamp": {
"seconds": 1780942,
"nanos": 100000000
},
"median": {
"value": "63523.1267818274"
},
"lastVolume": {
"value": "0.00000017"
},
"lastUnderlyingVolume": {
"value": "0.0107958126"
},
"lastTradeId": "1204043756",
"dayUnderlyingVolume": {
"value": "23877.59071385"
},
"dayQuotedVolume": {
"value": "1513703665.67374"
},
"h24UnderlyingVolume": {
"value": "33691.54917206"
},
"h24QuotedVolume": {
"value": "2126242561.78843"
},
"dayOpen": {
"value": "63315.1065321782"
},
"dayHigh": {
"value": "64199.9776710545"
},
"dayLow": {
"value": "62393.1022759814"
},
"h24Open": {
"value": "62014.926566741"
},
"h24High": {
"value": "64199.9776710545"
},
"h24Low": {
"value": "61166.479991137"
},
"hourUnderlyingVolume": {
"value": "105.6514879"
},
"hourQuotedVolume": {
"value": "6717810.00305892"
},
"hourOpen": {
"value": "63534.1678453974"
},
"hourHigh": {
"value": "63624.8539896268"
},
"hourLow": {
"value": "63519.9494427626"
},
"h24Change": {
"value": "1508.200215086399"
},
"h24PctChange": {
"value": "2.431995486543487"
},
"dayChange": {
"value": "208.02024964919838"
},
"dayPctChange": {
"value": "0.3285475789944027"
},
"hourChange": {
"value": "-11.041063570002734"
},
"hourPctChange": {
"value": "-0.017378150913804062"
},
"supply": 20039087,
"mktcap": {
"value": "1272945464093.0693"
},
"circulatingSupply": 20039087,
"circulatingSupplyMktcap": {
"value": "1272945464093.0693"
},
"h24UnderlyingTotalVolume": {
"value": "326752.617229663"
},
"h24QuotedTotalVolume": {
"value": "20742397942.829296"
},
"imageUrl": "//media/37746251/btc.png"
}
]
]
}
]
]