Naar de inhoud
GET /v1/token

Resolve a token by contract address (metadata + lists + bridges)

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "name": "USDCoin",
        "note": "Canonical metadata for the token, the curated lists it appears in, and (where published) its bridged addresses on other chains keyed by chain id.",
        "source": "tokenlists.org ecosystem",
        "symbol": "USDC",
        "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
        "chain_id": 1,
        "decimals": 6,
        "found_in": [
            "uniswap",
            "coingecko",
            "oneinch",
            "aave",
            "optimism"
        ],
        "logo_uri": "https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png",
        "list_count": 5,
        "bridged_addresses": {
            "10": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
            "56": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d",
            "130": "0x078d782b760474a361dda0af3839290b0ef57ad6",
            "143": "0x754704bc059f8c67012fed69bc8a327a5aafb603",
            "1868": "0xba9986d2381edf1da03b0b9c1f8b00dc4aacc369",
            "42161": "0xaf88d065e77c8cc2239327c5edb3a432268e5831",
            "42220": "0xceba9300f2b948710d2653dd7b07f33a8b32118c",
            "43114": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e"
        }
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:13.839Z",
        "request_id": "9682b558-4a8d-45c9-878c-8d535bd3a107"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}