/v1/markets
List trading pairs with order limits and precision
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
…