Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata and endpoint list

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/bitvavo-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "Markets are BASE-QUOTE (e.g. BTC-EUR). volume_quote_24h is the 24h volume in the quote currency.",
        "source": "Bitvavo API (api.bitvavo.com/v2, live)",
        "service": "bitvavo-api",
        "endpoints": {
            "GET /v1/book": "Live market depth — best bid/ask and spread (market=BTC-EUR, limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/ticker": "Ticker for one market (market=BTC-EUR or symbol=BTC&quote=EUR).",
            "GET /v1/markets": "List trading pairs with order limits and precision (quote=EUR optional).",
            "GET /v1/tickers": "All markets for a quote ranked by 24h quote volume (quote=EUR, limit=50)."
        },
        "description": "Live spot market data from Bitvavo, the largest retail crypto exchange in the Netherlands and one of the highest-volume euro venues in Europe. The ticker endpoint returns a market's last price, best bid/ask, 24h high/low, open, 24h change and base/quote volume (in euro, USDT or Bitcoin); the tickers endpoint ranks every market for a quote currency by 24h quote volume; the markets endpoint lists trading pairs with status, order limits and precision; the book endpoint returns live market depth. Live, no key, nothing stored. A distinct European / euro venue, separate from other exchange feeds.",
        "market_count": 440,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:29.719Z",
        "request_id": "5e6aa334-2673-4650-a727-7f0df37abdca"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}