Market Tickers
GET /markets/tickers
Fetches a list of market price tickers with 24h OHLCV data.
- Schema
- Response
Field | Description |
---|---|
pair string | Trading pair in format {base}_{quote} . |
base string | Base currency (always XTZ ). |
quote string | Quote currency. |
exchange string | Exchange code. |
open money | 24h open price in quote currency. |
high money | 24h highest price in quote currency. |
low money | 24h lowest price in quote currency. |
last money | Last price in quote currency. |
change float | 24h price change in percent. |
vwap money | 24h volume weighted average price in quote currency. |
n_trades int64 | 24h number of trades. |
volume_base money | 24h traded volume in base currency. |
volume_quote money | 24h traded volume in quote currency. |
timestamp datetime | Timestamp of the ticker result. |
[
{
"pair": "XTZ_BNB",
"base": "XTZ",
"quote": "BNB",
"exchange": "binance",
"open": 0.05813000,
"high": 0.06058000,
"low": 0.05583000,
"last": 0.05741000,
"change": -1.23860313,
"vwap": 0.05787292,
"n_trades": 176,
"volume_base": 17373.80000000,
"volume_quote": 1005.47257300,
"timestamp": "2019-09-29T20:14:00.001014458Z"
},
{
"pair": "XTZ_BTC",
"base": "XTZ",
"quote": "BTC",
"exchange": "kraken",
"open": 0.00011090,
"high": 0.00011300,
"low": 0.00010710,
"last": 0.00010970,
"change": -1.08205591,
"vwap": 0.00011036,
"n_trades": 808,
"volume_base": 219356.80514484,
"volume_quote": 24.20907256,
"timestamp": "2019-09-29T20:14:00.000755843Z"
}
]