/v1/markets
Tradable pairs with size and notional limits
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/bingx-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bingx-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bingx-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/bingx-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": 2160,
"quote": "USDT",
"source": "BingX",
"markets": [
{
"base": "WLKN",
"quote": "USDT",
"market": "WLKN-USDT",
"status": 0,
"max_qty": 4951,
"min_qty": 123.7,
"step_size": 0.1,
"tick_size": 1.0e-5,
"max_notional": 20000,
"min_notional": 5
},
{
"base": "EVDC",
"quote": "USDT",
"market": "EVDC-USDT",
"status": 1,
"max_qty": 848176420.7,
"min_qty": 42409,
"step_size": 0.01,
"tick_size": 1.0e-8,
"max_notional": 20000,
"min_notional": 1
},
{
"base": "ELA",
"quote": "USDT",
"market": "ELA-USDT",
"status": 1,
"max_qty": 346.37,
"min_qty": 0.246,
"step_size": 0.001,
"tick_size": 0.0001,
"max_notional": 790,
"min_notional": 1
},
{
"base": "IRYNA",
"quote": "USDT",
"market": "IRYNA-USDT",
"status": 0,
"max_qty": 414421.89,
"min_qty": 41.5,
"step_size": 0.01,
"tick_size": 1.0e-6,
"max_notional": 500,
"min_notional": 1
},
{
"base": "XIUXIAN",
"quote": "USDT",
"market": "XIUXIAN-USDT",
"status": 0,
"max_qty": 292056.08,
"min_qty": 29.3,
"step_size": 0.01,
"tick_size": 1.0e-5,
"max_notional": 781,
"min_notional": 1
},
{
"base": "XYO",
"quote": "USDT",
"market": "XYO-USDT",
"status": 1,
"max_qty": 4341220,
"min_qty": 1085,
"step_size": 1,
"tick_size": 1.0e-6,
"max_notional": 30000,
"min_notional": 1
},
{
"base": "PEPE",
"quote": "USDT",
"market": "PEPE-USDT",
"status": 1,
"max_qty": 12300123002,
"min_qty": 3075030,
"step_size": 1,
"tick_size": 1.0e-8,
"max_notional": 867919.30866288,
"min_notional": 1
},
{
"base": "DEBT",
"quote": "USDT",
"market": "DEBT-USDT",
"status": 0,
"max_qty": 1175088.14,
"min_qty": 58.8,
"step
…