Naar de inhoud
GET /v1/chains

Supported chains and aliases

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/walletbalance-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/walletbalance-api/v1/chains" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/walletbalance-api/v1/chains", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/walletbalance-api/v1/chains");
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/walletbalance-api/v1/chains",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 7,
        "chains": [
            {
                "key": "ethereum",
                "name": "Ethereum",
                "native": "ETH"
            },
            {
                "key": "polygon",
                "name": "Polygon",
                "native": "POL"
            },
            {
                "key": "bsc",
                "name": "BNB Smart Chain",
                "native": "BNB"
            },
            {
                "key": "arbitrum",
                "name": "Arbitrum One",
                "native": "ETH"
            },
            {
                "key": "optimism",
                "name": "Optimism",
                "native": "ETH"
            },
            {
                "key": "base",
                "name": "Base",
                "native": "ETH"
            },
            {
                "key": "avalanche",
                "name": "Avalanche C-Chain",
                "native": "AVAX"
            }
        ],
        "aliases": {
            "op": "optimism",
            "arb": "arbitrum",
            "bnb": "bsc",
            "eth": "ethereum",
            "pol": "polygon",
            "avax": "avalanche",
            "matic": "polygon",
            "binance": "bsc"
        }
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:02.258Z",
        "request_id": "f13cb66c-c788-49b6-95a9-91c0160c59d9"
    },
    "status": "ok",
    "message": "Chains retrieved successfully",
    "success": true
}