Skip to main content

Order Book

PriceLevel

Attribute NameTypeDescriptionExample
pricestringprice5098.37
quantitystringquantity0.0679
order_countstringorder count in this level10

Depth

Attribute NameTypeDescriptionExample
asset_pair_namestringasset pair nameBTC-USDT
bidsPriceLevel arraybids
asksPriceLevel arrayasks

Order Book is the ask orders and bid orders collection of a asset pair

OrderBook of a asset pair

GET /asset_pairs/{asset_pair_name}/depth

Parameters

NameTypeRequireDescriptionExample
asset_pair_namestringtrueasset pair nameETH-BTC
limitstringfalsedefault 50; max 200

Response is depth object.

{
"asset_pair_name": "EOS-BTC",
"bids": [
{
"price": "42",
"order_count": 4,
"quantity": "23.33363711"
}
],
"asks": [
{
"price": "45",
"order_count": 2,
"quantity": "4193.3283464"
}
]
}