Skip to content
GET /v1/assets

Catalogue of quoted assets

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/dia-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 50,
        "total": 3274,
        "assets": [
            {
                "name": "Ether",
                "symbol": "ETH",
                "address": "0x0000000000000000000000000000000000000000",
                "decimals": 18,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "USD Coin",
                "symbol": "USDC",
                "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
                "decimals": 6,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "Tether USD",
                "symbol": "USDT",
                "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
                "decimals": 6,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "Worldcoin",
                "symbol": "WLD",
                "address": "0x163f8C2467924be0ae7B5347228CABF260318753",
                "decimals": 18,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "Wrapped Ether",
                "symbol": "WETH",
                "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
                "decimals": 18,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "Wrapped BTC",
                "symbol": "WBTC",
                "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599",
                "decimals": 8,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "Tether Gold",
                "symbol": "XAUt",
                "address": "0x68749665FF8D2d112Fa859AA293F07A622782F38",
                "decimals": 6,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "USDe",
                "symbol": "USDe",
                "address": "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
                "decimals": 18,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "Global Dollar",
                "symbol": "USDG",
                "address": "0xe343167631d89B6Ffc58B88d6b7fB0228795491D",
                "decimals": 6,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "ENA",
                "symbol": "ENA",
                "address": "0x57e114B691Db790C35207b2e685D4A43181e6061",
                "decimals": 18,
                "blockchain": "Ethereum",
                "volume_usd": 0
            },
            {
                "name": "USDS Stablecoin",
                "symbol": "USDS",
                "address": "0xdC035D45d973E3EC169d
…