QUICK START

DegenLeaks Token Analysis API

Get comprehensive token intelligence including security analysis, holder distribution, KOL holdings, and bluechip holder data. Perfect for building trading bots, analysis tools, and DeFi applications.

1Get API Key

Create an account to get your free API key

2Make Request

Call /api/token/[address] with your API key

3Get Data

Receive detailed token analysis in JSON format

QUICK EXAMPLE
curl -H "X-API-Key: dl_your_api_key" https://api.degenleaks.org/api/token/0x4ed4...
BASE URL
https://api.degenleaks.org
SUPPORTED CHAINS
Base(MORE COMING SOON)
AUTHENTICATION

All requests require API key

Include your API key in the request header:

X-API-Key: dl_your_api_key_here
IMPORTANT

Keep your API key secret. Do not expose it in client-side code or public repositories.

RATE LIMITS
100
REQUESTS / DAY
00:00 UTC
DAILY RESET

Quota remaining is returned in the _meta.quotaRemaining field of each response. Need more? Top up your quota with USDC.

GET/api/token/[address]

Get comprehensive token profile including security analysis, holder distribution, KOL holdings, and bluechip holder data.

PARAMETERS
addressrequiredERC-20 token contract (0x...)
fulloptionalExtended data (100 KOLs, 200 bluechip)
RESPONSE
marketCap, price changes, volume
securityHoneypot, taxes, blacklist
distributionBundler, entrapment %
kolKOL/influencer holdings
socialsWebsite, Twitter links
deployerCreator address, dev buy
curl -X GET "https://api.degenleaks.org/api/token/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed" \
  -H "X-API-Key: dl_your_api_key"

# With full=true for extended data
curl -X GET "https://api.degenleaks.org/api/token/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed?full=true" \
  -H "X-API-Key: dl_your_api_key"
TRY IT

Test the API directly

TOKEN ADDRESS
API KEY
ERROR RESPONSES
CODEDESCRIPTIONRESPONSE
400Invalid token address{"error": "Invalid token address format"}
401Missing API key{"error": "API key required..."}
401Invalid API key{"error": "Invalid API key"}
429Quota exceeded{"error": "Daily quota exceeded"}
500Server error{"error": "Internal server error"}
EXAMPLE RESPONSE
{
  "address": "0x6a54aa801607a09f11be4f83fcc324696163bb07",
  "chain": "Base",
  "name": "Clawshi",
  "symbol": "Clawshi",
  "decimals": 18,
  "description": "Predict the Agent Economy.",
  "logo": "https://...mypinata.cloud/ipfs/bafkrei...",
  "supply": {
    "total": "100000000000",
    "circulating": "100000000000"
  },
  "holders": {
    "count": 902,
    "top10_pct": 10.43
  },
  "market": {
    "cap": 209899.80,
    "price_change_1h": -0.56,
    "price_change_6h": -10.21,
    "price_change_24h": -15.74,
    "volume_24h": 15877.13,
    "starting_cap": 9.87
  },
  "liquidity": "54362.84",
  "socials": {
    "website": "https://clawshi.app/",
    "twitter": "https://x.com/ClawshiAI"
  },
  "tags": {
    "verified": true,
    "type": "clanker_v4"
  },
  "security": {
    "open_source": true,
    "renounced": true,
    "honeypot": false,
    "blacklist": false,
    "buy_tax": "0",
    "sell_tax": "0"
  },
  "distribution": {
    "bundler_pct": 0,
    "fresh_wallet_pct": 0,
    "insider_pct": 0,
    "bot_degen_pct": 0,
    "entrapment_pct": 8.91,
    "bluechip_pct": 1.16,
    "bluechip_count": 58,
    "dev_hold_pct": 0,
    "creator_hold_pct": 0
  },
  "deployer": {
    "address": "0x62057aA2eEb956fC5b829c97ef6713d4750C9900",
    "dev_buy_eth": 0.1
  },
  "fees": {
    "clanker_fee_bps": 100,
    "sniper_tax_start": 80.01,
    "sniper_tax_end": 5.0,
    "sniper_decay_seconds": 15
  },
  "kol": {
    "count": 10,
    "total_pct": 0.5,
    "holding": 3,
    "exited": 7,
    "list": [
      {
        "address": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
        "name": "vitalik.eth",
        "pct": 0.01,
        "usd": 2098.04
      }
    ]
  },
  "bluechip_holders": {
    "count": 42,
    "total_pct": 15.3
  },
  "timestamps": {
    "created": "2026-02-03T15:55:55.000Z",
    "deployed": "2026-02-03T15:55:55.000Z",
    "opened": 1738598200
  },
  "contracts": {
    "factory": "0xE85A59c628F7d27878ACeB4bf3b35733630083a9",
    "locker": "0x63D2DfEA64b3433F4071A98665bcD7Ca14d93496",
    "pool": "0x31136d62aef3473cf452564c7da87991e3c57c1c..."
  },
  "_meta": {
    "quotaRemaining": 98,
    "bonusRemaining": 50
  }
}
GLOSSARY

Technical terms explained

KOL

Key Opinion Leader - Influential crypto traders/influencers whose wallet activity is tracked

bluechip

Established, high-value tokens like BRETT, DEGEN, TOSHI that indicate smart money

honeypot

A scam token where you can buy but cannot sell - the contract blocks sells

renounced

Contract ownership has been given up, meaning no one can modify the token

bundler

Wallets that bought tokens in the same block as deployment (often insiders)

fresh wallet

Newly created wallets with no prior transaction history (suspicious)

insider

Wallets connected to the token creator or team members

entrapment

Wallets holding at a loss - bought at prices higher than current market value

SUPPORT

For questions or issues, DM us on Twitter/X:

@UTXODEV

DegenLeaks API v1.0 ยท Built for the Base ecosystem