Naar de inhoud
GET /v1/tickers

All markets for a quote ranked by 24h volume

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/bitvavo-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/bitvavo-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitvavo-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitvavo-api/v1/tickers");
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/tickers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 50,
        "quote": "EUR",
        "source": "Bitvavo",
        "tickers": [
            {
                "ask": 54276,
                "bid": 54275,
                "base": "BTC",
                "last": 54291,
                "quote": "EUR",
                "market": "BTC-EUR",
                "spread": 1,
                "low_24h": 52553,
                "high_24h": 54525,
                "open_24h": 53369,
                "timestamp": 1781164167057,
                "volume_24h": 818.74314866,
                "change_24h_pct": 1.7276,
                "volume_quote_24h": 43860525.29
            },
            {
                "ask": 1431.55,
                "bid": 1431.42,
                "base": "ETH",
                "last": 1431.76,
                "quote": "EUR",
                "market": "ETH-EUR",
                "spread": 0.13,
                "low_24h": 1389.78,
                "high_24h": 1441.02,
                "open_24h": 1417.64,
                "timestamp": 1781164164094,
                "volume_24h": 15792.10426911,
                "change_24h_pct": 0.996,
                "volume_quote_24h": 22362328.32
            },
            {
                "ask": 56.266,
                "bid": 56.263,
                "base": "SOL",
                "last": 56.271,
                "quote": "EUR",
                "market": "SOL-EUR",
                "spread": 0.003,
                "low_24h": 54.002,
                "high_24h": 58.055,
                "open_24h": 55.893,
                "timestamp": 1781164164056,
                "volume_24h": 352448.70113234,
                "change_24h_pct": 0.6763,
                "volume_quote_24h": 19595441.93
            },
            {
                "ask": 0.96485,
                "bid": 0.96484,
                "base": "XRP",
                "last": 0.96494,
                "quote": "EUR",
                "market": "XRP-EUR",
                "spread": 1.0e-5,
                "low_24h": 0.9432,
                "high_24h": 0.98286,
                "open_24h": 0.96782,
                "timestamp": 1781164165543,
                "volume_24h": 13727882.18053,
                "change_24h_pct": -0.2976,
                "volume_quote_24h": 13202610.5
            },
            {
                "ask": 0.14412,
                "bid": 0.14409,
                "base": "ADA",
                "last": 0.14413,
                "quote": "EUR",
                "market": "ADA-EUR",
                "spread": 3.0e-5,
                "low_24h": 0.13718,
                "high_24h": 0.146,
                "open_24h": 0.14003,
                "timestamp": 1781164167000,
                "volume_24h": 60849123.48639,
                "change_24h_pct": 2.9279,
                "volume_quote_24h": 8560410.56
            },
            {
                "ask": 48.318,
                "bid": 48.299,
                "base": "HYPE",
                "last": 48.351,
                "quote": "EUR",
…