Get markets
REQUEST wss://ws.bitvavo.com/v2 getMarkets
Returns the information about one or all markets on Bitvavo.
Rate limit weight points: 1
Request
- Schema
- Example (body)
Body
Set value to getMarkets.
getMarketsYour identifier for the request.
1The market for which to return information.
BTC-EUR{
"action": "getMarkets",
"requestId": 1,
"market": "BTC-EUR"
}
Response
- Schema
- Example (body)
Schema
- Array [
- ]
The action performed.
getMarketsYour identifier for the request.
1response object
The market for which you requested information.
BTC-EURThe status of the market for which you requested information. To learn how markets in different statuses work, see Trading Rules.
Possible values: [trading, halted, auction, auctionMatching, cancelOnly]
tradingThe base currency of the specified market.
BTCThe quote currency of the specified market.
EURThe number of digits allowed in the price when the order was created.
5The minimum amount of base currency for an order.
0.00006100The minimum amount of quote currency for an order.
5.00The maximum amount of base currency for an order.
1000000000.00000000The maximum amount of quote currency for an order.
1000000000.00The maximum number of decimals in the amount of an order.
8The maximum number of decimals in the amountQuote of a market, stopLoss, or takeProfit order.
2The minimum price increment of the market.
0.00001The maximum number of open orders allowed in a market per account.
100The types of orders that can be placed in the specified market.
Possible values: [market, limit, stopLoss, stopLossLimit, takeProfit, takeProfitLimit]
["market","limit","stopLoss","stopLossLimit","takeProfit","takeProfitLimit"][
{
"action": "getMarkets",
"requestId": 1,
"response": {
"market": "BTC-EUR",
"status": "trading",
"base": "BTC",
"quote": "EUR",
"pricePrecision": 5,
"minOrderInBaseAsset": "0.00006100",
"minOrderInQuoteAsset": "5.00",
"maxOrderInBaseAsset": "1000000000.00000000",
"maxOrderInQuoteAsset": "1000000000.00",
"quantityDecimals": 8,
"notionalDecimals": 2,
"tickSize": "0.00001",
"maxOpenOrders": 100,
"feeCategory": "A",
"orderTypes": [
"market",
"limit",
"stopLoss",
"stopLossLimit",
"takeProfit",
"takeProfitLimit"
]
}
}
]