/v1/markets
Tradable pairs with base/quote
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}