Get candlestick data 24h
REQUEST wss://ws.bitvavo.com/v2 getTicker24h
Streams the OHLCV data about trades and orders
for all markets, or a single market, on Bitvavo during the latest 24 hours.
Rate limit weight points:
- All markets: 25
- One
market: 1
Request
- Schema
- Example (body)
Body
Set value to getTicker24h.
getTicker24hYour identifier for the request.
1The market for which to return the order book.
BTC-EUR{
"action": "getTicker24h",
"requestId": 1,
"market": "BTC-EUR"
}
Response
- Schema
- Example (body)
Schema
The action performed.
getTicker24hYour identifier for the request.
1response object
The market for which you requested the ticker data.
BTC-EURThe Unix timestamp in milliseconds starting from which to return the data.
1700490607372The Unix timestamp in milliseconds when the data was requested.
1700576057382The opening price for the market in the base currency.
5001.1The Unix timestamp in milliseconds 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 Unix timestamp in milliseconds 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{
"action": "getTicker24h",
"requestId": 1,
"response": {
"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"
}
}