Naar de inhoud
GET /v1/lists

The curated token lists and their token counts

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

Voorbeeldrespons

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

{
    "data": {
        "note": "Curated, trusted token lists. Use the key with /v1/tokens?list=<key>.",
        "count": 5,
        "lists": [
            {
                "key": "uniswap",
                "name": "Uniswap Labs Default",
                "version": "22.1.0",
                "timestamp": "2026-06-11T20:12:01.724Z",
                "source_url": "https://tokens.uniswap.org",
                "token_count": 1472
            },
            {
                "key": "coingecko",
                "name": "CoinGecko",
                "version": "1516.0.0",
                "timestamp": "2026-06-13T11:03:02.238+00:00",
                "source_url": "https://tokens.coingecko.com/uniswap/all.json",
                "token_count": 4922
            },
            {
                "key": "oneinch",
                "name": "1inch default token list",
                "version": "146.0.0",
                "timestamp": "2025-01-28T16:04:53.109+00:00",
                "source_url": "https://tokens.1inch.eth.limo",
                "token_count": 2570
            },
            {
                "key": "aave",
                "name": "Aave Token List",
                "version": "1.3.0",
                "timestamp": "2020-12-11T17:08:18.941Z",
                "source_url": "https://tokenlist.aave.eth.link",
                "token_count": 81
            },
            {
                "key": "optimism",
                "name": "Superchain Token List",
                "version": "10.0.1762",
                "timestamp": "2026-06-02T15:26:23.327Z",
                "source_url": "https://static.optimism.io/optimism.tokenlist.json",
                "token_count": 1168
            }
        ],
        "source": "tokenlists.org ecosystem"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:13.917Z",
        "request_id": "cdfabace-12ba-4e47-a08c-87c9d7d80214"
    },
    "status": "ok",
    "message": "Token lists retrieved successfully",
    "success": true
}