/v1/meta
Service metadata and endpoint list
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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"e=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
}