Get orderbook
This endpoint allows users to retrieve the current orderbook (bid/ask levels) for a specified trading symbol.
/api/v1/bookQuery Parameters
Field
Type
Need
Description
Example
api/v1/book?symbol=BTCResponse
{
"success": true,
"data": {
"s": "BTC",
"l": [
[
{
"p": "106504",
"a": "0.26203",
"n": 1
},
{
"p": "106498",
"a": "0.29281",
"n": 1
}
],
[
{
"p": "106559",
"a": "0.26802",
"n": 1
},
{
"p": "106564",
"a": "0.3002",
"n": 1
},
]
],
"t": 1751370536325
},
"error": null,
"code": null
}Field
Type
Description
Code Example (Python)
Last updated