/v1/meta
Service metadata
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/buda-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/buda-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/buda-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/buda-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 (BTC-CLP). The default quote is the Chilean peso (CLP); COP and PEN are also available. quote_volume_24h is in the quote currency; change is from Buda's 24h/7d price variation. Buda has no 24h high/low in its ticker.",
"source": "Buda public API (buda.com/api/v2, live)",
"service": "buda-api",
"endpoints": {
"GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC-CLP, limit=20).",
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one market (market=BTC-CLP or base=BTC"e=CLP).",
"GET /v1/markets": "Tradable pairs with base/quote (quote=CLP optional).",
"GET /v1/tickers": "All markets for a quote ranked by 24h turnover (quote=CLP, limit=50)."
},
"description": "Live spot market data from Buda.com, a leading Latin American crypto exchange (Chile, Colombia, Peru). The ticker endpoint returns a market's last price, best bid/ask, 24h and 7d change and base/quote volume; the tickers endpoint ranks every market for a quote currency (CLP, COP, PEN, or BTC/USDC/USDT) by 24h turnover; the markets endpoint lists tradable pairs with base/quote; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct Latin-American venue for CLP/COP/PEN price discovery, separate from the USD/USDT-quoted exchange feeds.",
"market_count": 26,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:48:28.122Z",
"request_id": "1319626d-fe1b-46a7-8519-c1afebf46b61"
},
"status": "ok",
"message": "Meta",
"success": true
}