/v1/markets
Tradable pairs with base/quote
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}