/v1/markets
Supported coins and fiat quote currencies
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/independentreserve-api/v1/markets" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/independentreserve-api/v1/markets", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/independentreserve-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/independentreserve-api/v1/markets",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"coins": [
"aave",
"ada",
"audm",
"ausd",
"avax",
"bat",
"bch",
"bonk",
"btc",
"comp",
"dai",
"doge",
"dot",
"etc",
"eth",
"grt",
"hype",
"link",
"ltc",
"mana",
"matic",
"mkr",
"pengu",
"pepe",
"render",
"rlusd",
"sand",
"shib",
"snx",
"sol",
"trump",
"trx",
"uni",
"usdc",
"usdt",
"wif",
"xaut",
"xlm",
"xrp",
"yfi",
"zrx"
],
"fiats": [
"aud",
"nzd",
"sgd",
"usd"
],
"venue": "Independent Reserve",
"source": "Independent Reserve",
"fiat_count": 4,
"pairs_total": 164,
"primary_count": 41
},
"meta": {
"timestamp": "2026-06-12T01:42:49.106Z",
"request_id": "4f62c5ae-9cf0-44d4-a14d-09ef56e4a73f"
},
"status": "ok",
"message": "Markets retrieved successfully",
"success": true
}