Order Book
Order Book is the ask orders and bid orders collection of a market
OrderBook of a market
GET /markets/{market_id}/depth
Parameters
Name | Description | Example | Require |
---|---|---|---|
market_id | market id | ETH-BTC | true |
Response is a OrderBook
{
"market_id": "EOS-BTC",
"bids": [
{
"price": "42",
"order_count": 4,
"amount": "23.33363711"
}
],
"asks": [
{
"price": "45",
"order_count": 2,
"amount": "4193.3283464"
}
]
}