
Defillama
- 274 installs
- 21 repo stars
- Updated August 3, 2026
- starchild-ai-agent/official-skills
Helps with ai & agent building tasks during AI-assisted development.
About
defillama is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- defillama
- AI & Agent Building
- AI-coding skill
Defillama by the numbers
- 274 all-time installs (skills.sh)
- +13 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #2,434 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/starchild-ai-agent/official-skills --skill defillamaAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 274 |
|---|---|
| repo stars | ★ 21 |
| Last updated | August 3, 2026 |
| Repository | starchild-ai-agent/official-skills ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
DefiLlama API
Script-mode skill (PoC). This skill is NOT registered as Anthropic
tools. To use it, read this file, then runpythoninbashand import
from exports.py. See Script Usage section below.Script Usage
This skill ships a single exports.py with all functions. Call it from a bash block like this:
python3 - <<'EOF'
import sys, json
sys.path.insert(0, "/data/workspace/skills/defillama")
from exports import protocols, chains, yield_pools, dex_overview, fees_overview
# Top 10 protocols by TVL
data = protocols()
top = sorted(data, key=lambda p: p.get("tvl") or 0, reverse=True)[:10]
print(json.dumps([{"name": p["name"], "tvl": p["tvl"]} for p in top], indent=2))
EOFAvailable functions in exports.py: protocols, chains, protocol_tvl, yield_pools, dex_overview, fees_overview, revenue_overview, stablecoins, bridges, treasury. Read exports.py directly for signatures.
Trit: -1 (MINUS - Validator/Data Source) Color: #4A90D9 (Cold blue, 210°)
Comprehensive DeFi data from DefiLlama's API ecosystem.
Function Reference (signatures)
All functions are in exports.py. Call from a bash block after sys.path.insert(0, "/data/workspace/skills/defillama").
Protocols & TVL
| Function | Description |
|---|---|
protocols() | List all protocols with current TVL, chain breakdown, category. Returns list of dicts. |
protocol(slug) | Detailed history for one protocol (slug from protocols()). |
chains() | All supported chains with current TVL. |
chain_tvl_history(chain) | Daily TVL series for one chain. |
global_tvl_history() | Global daily TVL series. |
Stablecoins
| Function | Description |
|---|---|
stablecoins(include_prices=True) | All stablecoins with circulating supply per chain. |
stablecoin_chains() | Per-chain stablecoin totals. |
Yields
| Function | Description |
|---|---|
yield_pools() | All yield pools with APY, TVL, project, chain. |
yield_chart(pool_id) | Historical APY/TVL for one pool (pool_id from yield_pools()). |
Volume / Fees / Revenue
| Function | Description |
|---|---|
dex_overview(exclude_chart=True) | Aggregated DEX volume across all chains. |
dex_overview_chain(chain, exclude_chart=True) | DEX volume for one chain. |
fees_overview(exclude_chart=True) | Aggregated fees+revenue across all protocols. |
fees_overview_chain(chain, exclude_chart=True) | Per-chain fees breakdown. |
Bridges
| Function | Description |
|---|---|
bridges() | List all bridges with volume stats. |
bridge_chain_volume(chain) | Bridge volume by chain. |
bridge_volume(bridge_id, start_timestamp=None, end_timestamp=None) | Time series for one bridge. |
Prices
| Function | Description |
|---|---|
current_prices(coins) | Current prices. coins = list/string like "ethereum:0x...,coingecko:bitcoin". |
historical_prices(coins, timestamp) | Prices at a specific unix timestamp. |
Matching Keywords (intent triggers)
Use this skill when users ask about any of the following:
- TVL: TVL ranking, protocol TVL, chain TVL, TVL changes, DeFi market share
- Stablecoin yield: stablecoin yield, USDC/USDT APY, low-risk yield pools, safe yield, fixed-income-like DeFi
- Yield / Farming: APY ranking, yield pool screening, vault yield, lending APY, borrow rates, LSD/LRT yield
- DEX / Fees / Revenue: DEX volume, protocol fees, protocol revenue, revenue growth, which DEX revenue is growing fastest
- Flows / Rotation: capital flows, chain inflow/outflow, stablecoin netflow, liquidity rotation
- Protocol Research: protocol fundamentals, multi-protocol comparison, sector comparison, DeFi snapshot/report
Typical user prompts this skill should match:
- “Which DEX has seen the strongest revenue growth recently?”
- “Find me some low-risk stablecoin yield options with decent returns.”
- “Create a DeFi market snapshot for today (TVL / volume / fees).”
- “Compare ETH vs SOL on-chain flow changes over the last 30 days.”
Base URLs
| API | Base URL | Auth |
|---|---|---|
| Free API | https://api.llama.fi | None (no key needed) |
| Pro API | https://pro-api.llama.fi/{API_KEY} | Key in path /API_KEY/endpoint |
| Bridge API | https://bridges.llama.fi | None |
Key rule: Use https://api.llama.fi for all free endpoints (TVL, chains, DEX, fees, prices).Use https://pro-api.llama.fi/{API_KEY} ONLY for pro endpoints (yields, derivatives, emissions).Env var: DEFILLAMA_API_KEY — used in pro URL path, NOT as HTTP header.Most Common Endpoints (Start Here)
For 90% of DeFi analytics tasks, use these free endpoints (api.llama.fi):
| Task | Endpoint | Example |
|---|---|---|
| TVL Top N protocols | GET /protocols | Sort by .tvl field |
| Single protocol detail | GET /protocol/{slug} | e.g. /protocol/aave |
| Chain TVL history | GET /v2/historicalChainTvl/{chain} | .date + .tvl fields |
| DEX volumes | GET /overview/dexs?excludeChart=true | .total24h, .total7d |
| Protocol fees | GET /overview/fees?excludeChart=true | .total24h |
| All chains TVL | GET /v2/chains | Sum .tvl for global total |
⚠️ Pro endpoints (/yields/*,/emissions, etc.) requireDEFILLAMA_API_KEYin the URL path.
Proxy Requirement (sc-proxy)
When using fake API keys (for example fake-defillama-key-12345), requests must go through sc-proxy so the key can be replaced upstream.
- Env key name:
DEFILLAMA_API_KEY - Auto proxy detection envs:
PROXY_HOST,PROXY_PORT - If
HTTP_PROXY/HTTPS_PROXYare unset, direct requests may hit upstream and return key errors.
Python template (recommended)
import os
import requests
host = os.getenv("PROXY_HOST")
port = os.getenv("PROXY_PORT")
session = requests.Session()
if host and port:
if ":" in host and not host.startswith("["):
host = f"[{host}]" # IPv6-safe
proxy = f"http://{host}:{port}"
session.proxies.update({"http": proxy, "https": proxy})
# Free endpoint (no key needed):
r_free = session.get("https://api.llama.fi/protocols", timeout=25)
print("Free:", r_free.status_code)
# Pro endpoint (key in URL path):
api_key = os.environ["DEFILLAMA_API_KEY"]
r_pro = session.get(f"https://pro-api.llama.fi/{api_key}/yields/pools", timeout=25)
print("Pro:", r_pro.status_code)Quick test commands
set -a && source .env && set +a
python3 - << 'PY'
import os, requests
s = requests.Session()
host, port = os.getenv('PROXY_HOST'), os.getenv('PROXY_PORT')
if host and port:
if ':' in host and not host.startswith('['):
host = f'[{host}]'
p = f'http://{host}:{port}'
s.proxies.update({'http': p, 'https': p})
# Free endpoint
r1 = s.get('https://api.llama.fi/protocols', timeout=25)
print('free /protocols:', r1.status_code)
# Pro endpoint
k = os.environ['DEFILLAMA_API_KEY']
r2 = s.get(f'https://pro-api.llama.fi/{k}/yields/pools', timeout=25)
print('pro /yields/pools:', r2.status_code)
PYQuick Reference
TVL & Protocols
# All protocols with TVL
GET /protocols
# Single protocol detail
GET /protocol/{slug}
# Chain TVL
GET /v2/chains
GET /v2/historicalChainTvl/{chain}Prices
# Current prices (chain:address format)
GET /coins/prices/current/{coins}
# Historical
GET /coins/prices/historical/{timestamp}/{coins}
# Chart data
GET /coins/chart/{coins}?period=30dYields (Pro)
GET /yields/pools # All yield pools
GET /yields/chart/{pool} # Pool history
GET /yields/poolsBorrow # Borrow rates
GET /yields/perps # Perp funding
GET /yields/lsdRates # LSD ratesVolume
GET /overview/dexs?excludeChart=true # DEX volumes (recommended)
GET /overview/dexs/{chain}?excludeChart=true # Chain DEX
GET /summary/dexs/{protocol} # Protocol detail
GET /overview/options?excludeChart=true # Options
GET /overview/derivatives?excludeChart=true # Derivatives (Pro)Fees & Revenue
GET /overview/fees?excludeChart=true # All fees/revenue (recommended)
GET /overview/fees/{chain}?excludeChart=true # Chain fees
GET /summary/fees/{protocol} # Protocol fees
# dataType: dailyFees | dailyRevenue | dailyHoldersRevenueBridges
# Base: https://bridges.llama.fi
GET /bridges # All bridges
GET /bridge/{id} # Bridge detail
GET /bridgevolume/{chain} # Volume by chain
GET /transactions/{id} # Bridge txsDAT (Digital Asset Treasury)
GET /dat/institutions # All institutions
GET /dat/institutions/{symbol} # e.g., MSTRUsage Script
;; See scripts/defillama.bb for full implementation
(require '[defillama :as dl])
;; TVL
(dl/protocols)
(dl/protocol "aave")
(dl/chain-tvl "Ethereum")
;; Prices
(dl/price "ethereum:0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48")
(dl/price-chart "coingecko:ethereum" {:period "30d"})
;; Yields
(dl/yield-pools)
(dl/pool-chart "747c1d2a-c668-4682-b9f9-296708a3dd90")
;; Volumes
(dl/dex-overview)
(dl/dex-protocol "uniswap")
;; Fees
(dl/fees-overview)
(dl/fees-protocol "hyperliquid")Endpoint Categories
Free Endpoints
/protocols,/protocol/{slug},/tvl/{slug}/v2/chains,/v2/historicalChainTvl/coins/prices/*,/coins/chart/*/overview/dexs,/overview/options/overview/fees,/summary/fees/*
Pro Endpoints (API Key Required)
/yields/*- All yield endpoints (stablecoin pools, APY ranking, borrow/perps/LSD)/overview/derivatives/tokenProtocols/{symbol}/inflows/{protocol}/{timestamp}/chainAssets/emissions,/emission/{protocol}/categories,/forks,/oracles/entities,/treasuries/hacks,/raises/etfs/*,/dat/*- Bridge endpoints on bridges.llama.fi
Response Patterns
TVL Response
{"id": "2269", "name": "Aave", "tvl": 5200000000, "chains": ["Ethereum"]}Price Response
{"coins": {"ethereum:0x...": {"price": 0.999, "symbol": "USDC", "confidence": 0.99}}}Yield Pool Response
{"pool": "uuid", "chain": "Ethereum", "project": "aave-v3", "apy": 3.5, "tvlUsd": 1500000000}GF(3) Integration
This skill serves as MINUS (-1) validator in triads:
- Provides authoritative DeFi data
- Validates protocol metrics
- Constrains analysis with real data
Compose with:
aptos-agent(+1): Execute based on dataexa-search(0): Enrich with web context
Output Format Guidelines (Chinese/English Queries)
Always format DeFi data responses as human-readable markdown. Support both Chinese and English queries.
Number Formatting
- TVL ≥ $1B →
$X.XXB; TVL ≥ $1M →$XXXM - APY →
XX.X% - 24h changes →
+X.X%or-X.X% - Always include units:
$,%,B(billion),M(million)
Recommended Output Templates
TVL Leaderboard:
| # | Protocol | TVL | Chains |
|---|--------------|-----|-----------|
| 1 | Aave V3 | $24.7B | Ethereum, Arbitrum |Yield Pools:
| Pool | APY | TVL | Risk |
|---------|-----|-----|---------|
| USDC | 5.2% | $500M | ✅ Low risk |Market Snapshot:
| Metric | Value |
|------------|-----------|
| Total TVL | $96B |
| DEX 24h volume | $5.7B |
| Fees 24h | $49M |Risk Labels
Always include risk indicators for yield pools:
✅ Low risk— stable APY < 20%, no IL risk⚠️ Medium risk— APY 20-100%, or IL risk present🔴 High risk— APY > 100% (likely incentive-driven, unsustainable)
Tip: excludeChart Parameter
For volume/fee overview endpoints, always add ?excludeChart=true to reduce response size:
GET /overview/dexs?excludeChart=true # DEX volumes (much faster)
GET /overview/fees?excludeChart=true # Fee data (much faster)Common Pitfalls & Gotchas
1. Wrong Base URL for Free Endpoints
❌ WRONG: https://pro-api.llama.fi/protocols → returns 404 "Path needs to start with /yields/..." ✅ CORRECT: https://api.llama.fi/protocols
Free endpoints NEVER go through pro-api.llama.fi.
2. Pro Endpoint Without API Key
❌ WRONG: https://pro-api.llama.fi/yields/pools → 401 or wrong route ✅ CORRECT: https://pro-api.llama.fi/{DEFILLAMA_API_KEY}/yields/pools
The API key is in the URL path, not in a header.
3. Missing excludeChart=true for Volume/Fee Endpoints
Without this param, /overview/dexs returns large chart history arrays. Always add ?excludeChart=true for summary queries.
4. Handling TVL Null Values
When sorting protocols by TVL, filter first:
valid = [p for p in protocols if isinstance(p.get('tvl'), (int, float)) and p['tvl'] > 0]5. Stablecoins vs TVL
DefiLlama's chain TVL includes ALL DeFi assets, not just stablecoins. For stablecoin-specific flows, use the stablecoins.llama.fi API (separate from pro-api). When asked about "stablecoin flows", the chain TVL change is a reasonable proxy.
6. Yields Pool UUID
The pool field in /yields/pools is a UUID like "747c1d2a-c668-4682-b9f9-296708a3dd90". Use this UUID (not token address) for /yields/chart/{pool} history.
7. Stablecoin Yield Screening Baseline
For “conservative stablecoin yield” requests, start with this baseline filter:
stablecoin == truetvlUsd >= 50_000_000apybetween2and20(drop extreme incentive spikes)ilRisk == "no"- Prefer
exposure == "single"for conservative profiles
Workflow Examples (Agent Recipes)
Recipe 1: DeFi TVL Top 10 (1 call)
r = requests.get("https://api.llama.fi/protocols")
protocols = r.json()
top10 = sorted([p for p in protocols if p.get('tvl',0) > 0], key=lambda x: x['tvl'], reverse=True)[:10]
# Output: markdown table with | # | Protocol | TVL | Chain |Recipe 2: ETH vs SOL 30-day TVL comparison (2 calls)
r1 = requests.get("https://api.llama.fi/v2/historicalChainTvl/Ethereum")
r2 = requests.get("https://api.llama.fi/v2/historicalChainTvl/Solana")
# Filter last 30d: [d for d in r1.json() if d['date'] >= time.time() - 30*86400]
# Output: | Chain | TVL 30d ago | TVL today | Change % |Recipe 3: Stablecoin yield shortlist (1 call)
r = requests.get(f"https://pro-api.llama.fi/{API_KEY}/yields/pools")
raw = r.json()
pools = raw.get('data', raw) if isinstance(raw, dict) else raw
safe = [p for p in pools
if p.get('stablecoin') is True
and (p.get('tvlUsd') or 0) >= 50_000_000
and (p.get('apy') or 0) >= 2
and (p.get('apy') or 0) <= 20
and p.get('ilRisk') == 'no']
top = sorted(safe, key=lambda x: x.get('apy', 0), reverse=True)[:10]
# Output: | Project | Chain | Symbol | APY | TVL | Risk |Recipe 4: DeFi Market Snapshot (3 calls)
chains = requests.get("https://api.llama.fi/v2/chains").json()
dexs = requests.get("https://api.llama.fi/overview/dexs?excludeChart=true").json()
fees = requests.get("https://api.llama.fi/overview/fees?excludeChart=true").json()
# total_tvl = sum(c['tvl'] for c in chains if isinstance(c.get('tvl'), (int,float)))
# Output: snapshot table with TVL, DEX 24h vol, Fee 24hRecipe 5: Protocol TVL spike analysis (2 calls)
r1 = requests.get("https://api.llama.fi/protocols") # find protocol with big change_1d
r2 = requests.get(f"https://api.llama.fi/protocol/{slug}") # get chainTvls detail
# Output: | Hypothesis | Explanation | How to verify | (table + step-by-step verification)Stablecoin Data
For stablecoin-specific analytics (distinct from general TVL), use the stablecoins API:
# Stablecoins overview (separate from pro-api)
GET https://stablecoins.llama.fi/stablecoins?includePrices=true
# Chain-specific stablecoin data
GET https://stablecoins.llama.fi/stablecoincharts/{chain}
# chain = "Ethereum", "Solana", "BSC", etc.
# All chains stablecoin summary
GET https://stablecoins.llama.fi/stablecoinchainsWhen users ask about "stablecoin net flows" or "stablecoin inflows": 1. Use stablecoincharts/{chain} for 30-day stablecoin TVL change (more accurate than general TVL) 2. Or use /v2/historicalChainTvl/{chain} as proxy if stablecoin API is unavailable
Yields Pool Data Handling
The /yields/pools response is {"data": [...], "status": "success"}:
r = session.get(f"https://pro-api.llama.fi/{api_key}/yields/pools")
raw = r.json()
pools = raw.get('data', raw) if isinstance(raw, dict) else raw
# Filter example: TVL > $50M and APY > 0
filtered = [p for p in pools if p.get('tvlUsd', 0) >= 50_000_000 and (p.get('apy') or 0) > 0]Key pool fields:
| Field | Type | Description |
|---|---|---|
pool | UUID string | Unique pool identifier |
chain | string | Chain name |
project | string | Protocol name |
symbol | string | Token pair (e.g. "USDC-WETH") |
tvlUsd | number | TVL in USD |
apy | number | Current APY % |
apyBase | number | Base APY (lending/trading fees) |
apyReward | number | Incentive APY (token rewards) |
ilRisk | "yes"/"no" | Impermanent loss risk |
exposure | "single"/"multi" | Single vs multi-asset exposure |
apyPct7D | number | APY change past 7 days |
"""
DefiLlama skill exports — common DeFi analytics endpoints.
Usage from a bash block (script-mode skill):
python3 - <<'EOF'
import sys
sys.path.insert(0, "/data/workspace/skills/defillama")
from exports import protocols, yield_pools
print(protocols()[:3])
EOF
Imports from sidecar.proxy_client (NOT core.http_client) so this skill
stays runnable without the agent platform's core/* modules on PYTHONPATH.
"""
import os
import sys
# Make sidecar/ importable when the script is invoked directly via
# `python3 -c` from the agent's bash tool. /app is already on PYTHONPATH
# inside the container (set by entrypoint.sh), so `from sidecar...` works
# in production. The fallback covers local-dev runs from outside /app.
try:
from sidecar.proxy_client import proxied_get
except ImportError:
# Local dev / running outside the deployed image: fall back to
# core.http_client which is identical. Skill still works either way.
from core.http_client import proxied_get
FREE_BASE = "https://api.llama.fi"
BRIDGE_BASE = "https://bridges.llama.fi"
_TIMEOUT = 25
def _get(url, params=None):
r = proxied_get(url, params=params, timeout=_TIMEOUT)
r.raise_for_status()
return r.json()
def _pro_base():
key = os.environ.get("DEFILLAMA_API_KEY", "")
return f"https://pro-api.llama.fi/{key}"
# --- TVL ---
def protocols():
"""Get all protocols with TVL data. Sort by 'tvl' for ranking."""
return _get(f"{FREE_BASE}/protocols")
def protocol(slug):
"""Get single protocol detail (TVL history, chains, etc.)."""
return _get(f"{FREE_BASE}/protocol/{slug}")
def chains():
"""Get all chains with TVL."""
return _get(f"{FREE_BASE}/v2/chains")
def chain_tvl_history(chain):
"""Get historical TVL for a chain."""
return _get(f"{FREE_BASE}/v2/historicalChainTvl/{chain}")
def global_tvl_history():
"""Get global DeFi TVL history."""
return _get(f"{FREE_BASE}/v2/historicalChainTvl")
# --- DEX ---
def dex_overview(exclude_chart=True):
"""Get DEX volume overview (all chains)."""
params = {"excludeTotalDataChart": str(exclude_chart).lower(),
"excludeTotalDataChartBreakdown": str(exclude_chart).lower()}
return _get(f"{FREE_BASE}/overview/dexs", params=params)
def dex_overview_chain(chain, exclude_chart=True):
"""Get DEX volume overview for a specific chain."""
params = {"excludeTotalDataChart": str(exclude_chart).lower(),
"excludeTotalDataChartBreakdown": str(exclude_chart).lower()}
return _get(f"{FREE_BASE}/overview/dexs/{chain}", params=params)
# --- Fees / Revenue ---
def fees_overview(exclude_chart=True):
"""Get protocol fees overview."""
params = {"excludeTotalDataChart": str(exclude_chart).lower(),
"excludeTotalDataChartBreakdown": str(exclude_chart).lower()}
return _get(f"{FREE_BASE}/overview/fees", params=params)
def fees_overview_chain(chain, exclude_chart=True):
"""Get protocol fees for a specific chain."""
params = {"excludeTotalDataChart": str(exclude_chart).lower(),
"excludeTotalDataChartBreakdown": str(exclude_chart).lower()}
return _get(f"{FREE_BASE}/overview/fees/{chain}", params=params)
# --- Yields (Pro) ---
def yield_pools():
"""Get all yield pools (pro endpoint). Returns {data: [...pools]}."""
return _get(f"{_pro_base()}/yields/pools")
def yield_chart(pool_id):
"""Get historical APY chart for a pool (pro endpoint)."""
return _get(f"{_pro_base()}/yields/chart/{pool_id}")
# --- Stablecoins ---
def stablecoins(include_prices=True):
"""Get all stablecoins with mcap data."""
params = {"includePrices": str(include_prices).lower()}
return _get(f"{FREE_BASE}/stablecoins", params=params)
def stablecoin_chains():
"""Get stablecoin distribution across chains."""
return _get(f"{FREE_BASE}/stablecoinchains")
# --- Bridges ---
def bridges():
"""Get all bridges."""
return _get(f"{BRIDGE_BASE}/bridges")
def bridge_volume(bridge_id, start_timestamp=None, end_timestamp=None):
"""Get bridge volume history."""
params = {}
if start_timestamp:
params["starttimestamp"] = start_timestamp
if end_timestamp:
params["endtimestamp"] = end_timestamp
return _get(f"{BRIDGE_BASE}/bridge/{bridge_id}", params=params)
def bridge_chain_volume(chain):
"""Get bridge volume for a specific chain."""
return _get(f"{BRIDGE_BASE}/bridgevolume/{chain}")
# --- Prices ---
def current_prices(coins):
"""Get current prices for coins. coins = comma-separated "chain:address" strings.
Example: "ethereum:0x...,coingecko:bitcoin"
"""
return _get(f"{FREE_BASE}/prices/current/{coins}")
def historical_prices(coins, timestamp):
"""Get historical prices at a timestamp."""
return _get(f"{FREE_BASE}/prices/historical/{timestamp}/{coins}")