Orderbook
GET https://tradeano.com/orderbook?ticker_id={symbol}&depth=100
Response Field | Data Type | Description |
---|---|---|
ticker_id | String | Ticker ID such as TRAD_BUSD or BTC_BUSD |
timestamp | timestamp | Current Timestamp |
asks | decimal | List of Asks (An array containing 2 elements. The ask price and quantity for each ask order) |
bids | decimal | List of Bids (An array containing 2 elements. The offer price and quantity for each bid order) |
| | |
depth | Integer | Depth = 100 means 50 for each bid/ask side. |
Output :-
{
"ticker_id": "TRAD_BUSD",
"timestamp":"1662622766",
"bids":[
[
"0.51000000",
"470.00000000"
],
[
"0.50500000",
"307.04680000" ]
],
"asks":[
[
"0.40000000",
"1.00000000"
],
[
"0.41000000",
"10.00000000"
]
]
}
Last modified 8mo ago