Get order book report
GET/report/{market}/book
Returns the list of up to 1000 bids and asks for the specified market, sorted by price. Includes the data compliant with the European Markets in Crypto-Assets (MiCA) regulation.
This is a public endpoint. However, authenticating your request gives you a higher rate limit.
Rate limit weight points: 1
Request
Path Parameters
The market for which to return the order book.
BTC-EURQuery Parameters
Possible values: <= 1000
The number of bids and asks to return.
1000Responses
- 200
The request was successful.
Response Headers
The number of remaining weight points before it resets at bitvavo-ratelimit-resetat.
The time when bitvavo-ratelimit-remaining resets to bitvavo-ratelimit-limit.
The number of available weight points in one minute.
- application/json
- Schema
- Example (body)
Schema
- Array [
- ]
- Array [
- ]
The timestamp when the order book is submitted to the database.
2025-05-02T14:23:11.123456ZThe DTI code or a symbol of the asset.
4K6P57CMJThe full name of the asset.
Bitcoinbids object[]
The list of buy orders for the specified market and depth. Each bid includes:
Indicates if the order is to buy or sell.
Possible values: [BUYI]
The amount of quote currency for 1 unit of the base currency.
28500.1234567890123The quantity of the asset.
0.00123456789012345The number of individual orders at this price level.
38asks object[]
The list of sell orders for the specified market and depth. Each ask includes:
Indicates if the order is to buy or sell.
Possible values: [SELL]
The amount of quote currency for 1 unit of the base currency.
28500.1234567890123The quantity of the asset.
0.00123456789012345The number of individual orders at this price level.
38The DTI code or a symbol of the currency in which the price is expressed.
4K6P57CMJThe price expressed as a monetary value.
Possible values: [MONE]
MONEThe currency in which the quantity of the crypto asset is expressed.
EURThe quantity of the crypto asset.
Possible values: [CRYP]
CRYPThe Market Identifier Code of the Bitvavo trading platform.
VAVOThe trading system identifier of the Bitvavo trading platform.
VAVOThe timestamp when the book snapshot is added to the database.
2025-05-02T14:23:11.123456Z{
"submissionTimestamp": "2025-05-02T14:23:11.123456Z",
"assetCode": "4K6P57CMJ",
"assetName": "Bitcoin",
"bids": [
{
"side": "BUYI",
"price": "28500.12",
"quantity": "0.5",
"numOrders": 12
},
{
"side": "BUYI",
"price": "28499.90",
"quantity": "0.75",
"numOrders": 8
}
],
"asks": [
{
"side": "SELL",
"price": "28510.00",
"quantity": "0.4",
"numOrders": 9
},
{
"side": "SELL",
"price": "28520.00",
"quantity": "1.1",
"numOrders": 14
}
],
"priceCurrency": "4K6P57CMJ",
"priceNotation": "MONE",
"quantityCurrency": "EUR",
"quantityNotation": "CRYP",
"venue": "VAVO",
"tradingSystem": "VAVO",
"publicationTimestamp": "2025-05-02T14:23:11.123456Z"
}