Get ticker book
REQUEST wss://ws.bitvavo.com/v2 getTickerBook
Stream the highest buy and the lowest sell prices currently available for all markets, or a single market, in
the Bitvavo order book.
Rate limit weight points: 1
Request
- Schema
- Example (body)
Body
actionstring
Set value to getTickerBook.
Example:
getTickerBookrequestIdinteger
Your identifier for the request.
Example:
1marketstringrequired
The market for which to return the order book.
Example:
BTC-EUR{
"action": "getTickerBook",
"requestId": 1,
"market": "BTC-EUR"
}
Response
- Schema
- Example (body)
Schema
actionstring
The action performed.
Example:
getTickerBookrequestIdinteger
Your identifier for the request.
Example:
1response object
marketstring
The market for which you requested the latest trade price.
Example:
BTC-EURbidstring
The highest buy order in the quote currency for the market currently available on Bitvavo.
Example:
4999.9bidSizestring
The amount of base currency for the bid in the order.
Example:
0.15askstring
The lowest sell order in the quote currency for the market currently available on Bitvavo.
Example:
5003.3askSizestring
The amount of base currency for the ask in the order.
Example:
0.2{
"action": "getTickerBook",
"requestId": 1,
"response": {
"market": "BTC-EUR",
"bid": "4999.9",
"bidSize": "0.15",
"ask": "5003.3",
"askSize": "0.2"
}
}