[Deprecated] OrderBook API
You can inquire the quotes of DEX exchange.
Get OrderBooks for Address
Path Parameters
Name
Type
Description
HTTP/1.1 200 OK
{
"success": true,
"data": {
"lastOrderPrice": 15513.1,
"bids": [
{
"price": 0.1,
"size": 60,
"side": "buy"
},
{
"price": 5000,
"size": 0.0001,
"side": "buy"
}
],
"asks": [
{
"price": 15513.1,
"size": 2,
"side": "sell"
},
{
"price": 15525,
"size": 3.4393000000000002,
"side": "sell"
}
]
}
}Last updated