/v1/coins
Auto-detect currency set
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/cryptoaddr-api/v1/coins" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoaddr-api/v1/coins", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoaddr-api/v1/coins");
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/cryptoaddr-api/v1/coins",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Auto-detection tries these; pass any of 100+ symbols explicitly as ?currency= (e.g. btc, eth, ltc, doge, bch, xrp, ada, trx, xmr, …).",
"auto_detect": [
"btc",
"eth",
"ltc",
"doge",
"bch",
"dash",
"xrp",
"xlm",
"trx",
"ada",
"xmr",
"zec",
"etc",
"bnb",
"neo",
"qtum",
"xtz",
"atom",
"algo",
"dot"
]
},
"meta": {
"timestamp": "2026-06-02T16:51:52.747Z",
"request_id": "d17d8173-c031-4eec-aa9e-bfdbfabd8596"
},
"status": "ok",
"message": "Auto-detect currency set",
"success": true
}