Aller au contenu
GET /v1/coins

Auto-detect currency set

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/cryptoaddr-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}