/v1/markets
List trading pairs with order limits and precision
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/bitvavo-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitvavo-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitvavo-api/v1/markets");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/bitvavo-api/v1/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"count": 430,
"quote": "EUR",
"source": "Bitvavo",
"markets": [
{
"base": "FUN",
"quote": "EUR",
"market": "FUN-EUR",
"status": "trading",
"min_order_base": 131.4727,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "MON",
"quote": "EUR",
"market": "MON-EUR",
"status": "trading",
"min_order_base": 265.4282,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "LIGHTER",
"quote": "EUR",
"market": "LIGHTER-EUR",
"status": "trading",
"min_order_base": 3.979076,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "APT",
"quote": "EUR",
"market": "APT-EUR",
"status": "trading",
"min_order_base": 9.07473837,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "VANRY",
"quote": "EUR",
"market": "VANRY-EUR",
"status": "trading",
"min_order_base": 1689.59764214,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "CTSI",
"quote": "EUR",
"market": "CTSI-EUR",
"status": "trading",
"min_order_base": 262.63302016,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "MANTRA",
"quote": "EUR",
"market": "MANTRA-EUR",
"status": "trading",
"min_order_base": 757.1574,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "SHELL",
"quote": "EUR",
"market": "SHELL-EUR",
"status": "trading",
"min_order_base": 228.0445,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "MAVIA",
"quote": "EUR",
"market": "MAVIA-EUR",
"status": "trading",
"min_order_base": 223.93679083,
"min_order_quote": 5,
"price_precision": null
},
{
"base": "W",
"quote": "EUR",
"market": "W-EUR",
"status": "trading",
"min_order_base": 633.542865,
"min_order_quote": 5,
"price
…