Get Ticker
Request via this endpoint to get Level 1 Market Data. The returned value includes the best bid price and size, the best ask price and size as well as the last traded price and the last traded size.
HTTP REQUEST
GET /api/v1/market/orderbook/level1
Example
GET /api/v1/market/orderbook/level1?symbol=BTC-USDT
//Get Ticker
{
"sequence": "1550467636704",
"price": "0.03715005",
"size": "0.17",
"bestAsk": "0.03715004",
"bestAskSize": "1.788",
"bestBid": "0.03710768",
"bestBidSize": "3.803",
"time": 1550653727731
}
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Public weight
:2
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
symbol | String | Yes | symbol |
RESPONSES
Param | Description |
---|---|
sequence | Sequence |
bestAsk | Best ask price |
size | Last traded size |
price | Last traded price |
bestBidSize | Best bid size |
bestBid | Best bid price |
bestAskSize | Best ask size |
time | timestamp |