Get ticker prices
REQUEST wss://ws.bitvavo.com/v2 getTickerPrice
Returns prices of the latest trades on Bitvavo for all markets or a single market.
info
A tick in a market is any change in the price of a digital asset.
Rate limit weight points: 1
Request
- Schema
- Example (body)
Body
actionstring
Set value to getTickerPrice.
Example:
getTickerPricerequestIdinteger
Your identifier for the request.
Example:
1marketstringrequired
The market for which to return the order book.
Example:
BTC-EUR{
"action": "getTickerPrice",
"requestId": 1,
"market": "BTC-EUR"
}
Response
- Schema
- Example (body)
Schema
actionstring
The action performed.
Example:
getTickerPricerequestIdinteger
Your identifier for the request.
Example:
1response object
marketstring
The market for which you requested the latest trade price.
Example:
BTC-EURpricestring
The latest trade price for 1 unit of base currency in the amount of quote currency for the specified market. For example, 34243 Euro.
Example:
34243{
"action": "getTickerPrice",
"requestId": 1,
"response": {
"market": "BTC-EUR",
"price": "34243"
}
}