Get ticker book
GET/ticker/book
Returns the highest buy and the lowest sell prices currently available for all markets, or a single market, in
the Bitvavo order book.
This is a public endpoint. However, authenticating your request gives you a higher rate limit.
Rate limit weight points: 1
Request
Query Parameters
The market for which to return the latest information.
For the list of all markets on Bitvavo, make a Get markets request.
BTC-EURResponses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
- Array [
- ]
The market for which you requested the current best bid and ask information.
BTC-EURThe highest buy order in the quote currency for the market currently available on Bitvavo.
4999.9The amount of base currency for the bid in the order.
0.15The lowest sell order in the quote currency for the market currently available on Bitvavo.
5003.3The amount of base currency for the ask in the order.
0.2[
{
"market": "BTC-EUR",
"bid": "4999.9",
"bidSize": "0.15",
"ask": "5003.3",
"askSize": "0.2"
}
]
For error codes, see Handle errors.