/v1/meta
Spec
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/whitebit-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/whitebit-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/whitebit-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/whitebit-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": "Spot markets are BASE_QUOTE (e.g. BTC_USDT); perpetuals are excluded. change_24h_pct is the 24h percentage change; quote_volume_24h is in the quote currency.",
"source": "WhiteBIT API (whitebit.com/api/v4/public, live)",
"service": "whitebit-api",
"endpoints": {
"GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_USDT, limit=20).",
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one spot market (market=BTC_USDT or symbol=BTC"e=USDT).",
"GET /v1/markets": "Tradable spot pairs with precision, limits and fees (quote=USDT optional).",
"GET /v1/tickers": "All spot markets for a quote ranked by 24h quote volume (quote=USDT, limit=50)."
},
"description": "Live spot market data from WhiteBIT, one of the largest global crypto exchanges by spot volume (a major European venue). The ticker endpoint returns a market's last price, 24h change and base/quote volume; the tickers endpoint ranks every spot market for a quote currency by 24h quote volume; the markets endpoint lists tradable spot pairs with precision, min/max order size and maker/taker fees; the book endpoint returns live order-book depth with best bid/ask and spread. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
"upstream_status": "ok",
"spot_market_count": 787
},
"meta": {
"timestamp": "2026-06-11T07:49:23.513Z",
"request_id": "a70a99e3-6d31-49f4-9a5e-f661fe0b3ac0"
},
"status": "ok",
"message": "Meta",
"success": true
}