Get markets
GET/markets
Returns the information about one or all markets on Bitvavo.
This is a public endpoint. However, authenticating your request gives you a higher rate limit.
Rate limit weight points: 1
Request
Query Parameters
The market for which to return information.
BTC-EURResponses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
- Array [
- ]
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 in the specified market.
0.0001The minimum amount of quote currency for an order in the specified market.
5The maximum amount of base currency for an order in the specified market.
1000000000The maximum amount of quote currency for an order in the specified market.
1000000000The 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"]The maximum number of decimals in the amount of an order.
4The maximum number of decimal places allowed for amountQuote (quote currency amount).
2The minimum price increment of the market.
0.01The maximum number of open orders allowed in a market per account.
100[
{
"market": "BTC-EUR",
"status": "trading",
"base": "BTC",
"quote": "EUR",
"minOrderInBaseAsset": "0.0001",
"minOrderInQuoteAsset": "5",
"maxOrderInBaseAsset": "1000000000",
"maxOrderInQuoteAsset": "1000000000",
"orderTypes": [
"market",
"limit",
"stopLoss",
"stopLossLimit",
"takeProfit",
"takeProfitLimit"
],
"quantityDecimals": "4",
"notionalDecimals": "2",
"tickSize": "0.01",
"maxOpenOrders": 100,
"feeCategory": "A"
}
]
For error codes, see Handle errors.