/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/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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}