Vai al contenuto
GET /v1/leaders

Top-100 ranked by overhang or issuance

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "coins": [
            {
                "id": "humanity",
                "name": "Humanity",
                "rank": 93,
                "price": 0.323291,
                "symbol": "H",
                "market_cap": 582295566,
                "max_supply": 10000000000,
                "mcap_to_fdv": 0.183,
                "total_supply": 10000000000,
                "has_max_supply": true,
                "percent_issued": 18.25,
                "circulating_supply": 1825000000,
                "dilution_overhang_pct": 81.7,
                "fully_diluted_valuation": 3190660634
            },
            {
                "id": "hyperliquid",
                "name": "Hyperliquid",
                "rank": 10,
                "price": 60.22,
                "symbol": "HYPE",
                "market_cap": 13395686058,
                "max_supply": 1000000000,
                "mcap_to_fdv": 0.233,
                "total_supply": 955307079.4341414,
                "has_max_supply": true,
                "percent_issued": 22.24,
                "circulating_supply": 222445714.0741414,
                "dilution_overhang_pct": 76.7,
                "fully_diluted_valuation": 57528614467
            },
            {
                "id": "stable-2",
                "name": "​​Stable",
                "rank": 77,
                "price": 0.03592023,
                "symbol": "STABLE",
                "market_cap": 847524081,
                "max_supply": 100000000000,
                "mcap_to_fdv": 0.236,
                "total_supply": 100000000000,
                "has_max_supply": true,
                "percent_issued": 23.59,
                "circulating_supply": 23591458161,
                "dilution_overhang_pct": 76.4,
                "fully_diluted_valuation": 3592504010
            },
            {
                "id": "memecore",
                "name": "MemeCore",
                "rank": 27,
                "price": 2.95,
                "symbol": "M",
                "market_cap": 3877614545,
                "max_supply": 10000000000,
                "mcap_to_fdv": 0.244,
                "total_supply": 5380077390.444639,
                "has_max_supply": true,
                "percent_issued": 13.13,
                "circulating_supply": 1312760617.937413,
                "dilution_overhang_pct": 75.6,
                "fully_diluted_valuation": 15891599778
            },
            {
                "id": "audiera",
                "name": "Audiera",
                "rank": 51,
                "price": 5.42,
                "symbol": "BEAT",
                "market_cap": 1561798001,
                "max_supply": 1000000000,
                "mcap_to_fdv": 0.288,
                "total_supply": 1000000000,
                "has_max_supply": true,
                "percent_issued": 28.8,
                "circulating_supply": 288016666,
                "dilution_overhang_pct": 71.2,
                "fully_diluted_valuati
…