Vai al contenuto
GET /v1/lists

The curated token lists and their token counts

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/tokenlist-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}