/v1/markets
Tradable pairs with base/quote
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/buda-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/buda-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/buda-api/v1/markets");
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/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 7,
"quote": "CLP",
"source": "Buda",
"markets": [
{
"base": "BCH",
"quote": "CLP",
"market": "BCH-CLP",
"min_order": 0.001
},
{
"base": "BTC",
"quote": "CLP",
"market": "BTC-CLP",
"min_order": 2.0e-5
},
{
"base": "ETH",
"quote": "CLP",
"market": "ETH-CLP",
"min_order": 0.001
},
{
"base": "LTC",
"quote": "CLP",
"market": "LTC-CLP",
"min_order": 0.003
},
{
"base": "SOL",
"quote": "CLP",
"market": "SOL-CLP",
"min_order": 0.001
},
{
"base": "USDC",
"quote": "CLP",
"market": "USDC-CLP",
"min_order": 0.01
},
{
"base": "USDT",
"quote": "CLP",
"market": "USDT-CLP",
"min_order": 0.01
}
]
},
"meta": {
"timestamp": "2026-06-11T07:48:27.072Z",
"request_id": "34137a2e-a66b-4302-b34d-e49c4a0ba551"
},
"status": "ok",
"message": "Markets retrieved successfully",
"success": true
}