/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/quidax-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/quidax-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/quidax-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/quidax-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": 9,
"quote": "NGN",
"source": "Quidax",
"markets": [
{
"base": "BTC",
"quote": "NGN",
"market": "btcngn"
},
{
"base": "CNGN",
"quote": "NGN",
"market": "cngnngn"
},
{
"base": "DASH",
"quote": "NGN",
"market": "dashngn"
},
{
"base": "ETH",
"quote": "NGN",
"market": "ethngn"
},
{
"base": "LTC",
"quote": "NGN",
"market": "ltcngn"
},
{
"base": "QDX",
"quote": "NGN",
"market": "qdxngn"
},
{
"base": "TRX",
"quote": "NGN",
"market": "trxngn"
},
{
"base": "USDT",
"quote": "NGN",
"market": "usdtngn"
},
{
"base": "XRP",
"quote": "NGN",
"market": "xrpngn"
}
]
},
"meta": {
"timestamp": "2026-06-11T07:45:08.186Z",
"request_id": "6fbcb87d-6131-4f28-9587-72522d606a25"
},
"status": "ok",
"message": "Markets retrieved successfully",
"success": true
}