Get candlestick data 24h
GET/ticker/24h
Returns the OHLCV data about trades and orders
for all markets, or a single market, on Bitvavo during the latest 24 hours.
This is a public endpoint. However, authenticating your request gives you a higher rate limit.
Rate limit weight points:
- All markets: 25
- One
market: 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 ticker data.
BTC-EURThe time starting from which to return the data.
1700490607372The time when the data was requested.
1700576057382The opening price for the market in the base currency.
5001.1The time when the market opened after the startTimestamp.
1700490620146The highest trade price for 1 unit of base currency in the quote currency.
5003.2The lowest trade price for 1 unit of base currency in the quote currency.
5001.1The latest trade price for 1 unit of base currency in the quote currency.
5003.2The time when the market closed after the startTimestamp.
1700490620146The highest buy order in the quote currency.
4999.9The amount of base currency for the bid.
0.15The lowest sell order in the quote currency.
5003.3The amount of base currency for the ask.
0.2The total amount of base currency traded.
0.15The total amount of quote currency traded.
750.2865[
{
"market": "BTC-EUR",
"startTimestamp": 1700490607372,
"timestamp": 1700576057382,
"open": "5001.1",
"openTimestamp": 1700490620146,
"high": "5003.2",
"low": "5001.1",
"last": "5003.2",
"closeTimestamp": 1700490620146,
"bid": "4999.9",
"bidSize": "0.15",
"ask": "5003.3",
"askSize": "0.2",
"volume": "0.15",
"volumeQuote": "750.2865"
}
]
For error codes, see Handle errors.