Tickers
Ticker is the state of a market
Tickers of all market
GET /tickers
Response is a Ticker Collection
[
{
"volume": "190.4925000000000000",
"open": "0.0777371200000000",
"market_uuid": "38dd30bf-76c2-4777-ae2a-a3222433eef3",
"market_id": "ETH-BTC",
"low": "0.0742925600000000",
"high": "0.0789150000000000",
"daily_change_perc": "-0.3789180767180466680525339760",
"daily_change": "-0.0002945600000000",
"close": "0.0774425600000000", // last price
"bid": {
"price": "0.0764777900000000",
"amount": "6.4248000000000000"
},
"ask": {
"price": "0.0774425600000000",
"amount": "1.1741000000000000"
}
}
]
Ticker of one market
GET /markets/{market_id}/ticker
Parameters
Name | Description | Example | Require |
---|---|---|---|
market_id | market id | ETH-BTC | true |
Response is a Ticker object
{
"volume": "190.4925000000000000",
"open": "0.0777371200000000",
"market_uuid": "38dd30bf-76c2-4777-ae2a-a3222433eef3",
"market_id": "ETH-BTC",
"low": "0.0742925600000000",
"high": "0.0789150000000000",
"daily_change_perc": "-0.3789180767180466680525339760",
"daily_change": "-0.0002945600000000",
"close": "0.0774425600000000", // last price
"bid": {
"price": "0.0764777900000000",
"amount": "6.4248000000000000"
},
"ask": {
"price": "0.0774425600000000",
"amount": "1.1741000000000000"
}
}