Every DefiLlama yield pool, filtered and sorted server-side so you don't fetch the 11MB in
Every DefiLlama yield pool, filtered and sorted server-side so you don't fetch the 11MB index. Query: chain, project, symbol, min_tvl (USD), min_apy (%), stablecoin (true/false), sort (tvl|apy), limit (1-100). Each pool: project, chain, symbol, tvl_usd, apy, apy_base, apy_reward, stablecoin, il_risk, exposure. APYs move — poll it.
8000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-30
updated
Provider
x402.shizu.me · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x217e5Fe265EB78b29067bF8324ef03a7D8e167C4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "8000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"chain": "Base",
"limit": "20",
"min_tvl": "1000000",
"sort": "apy"
},
"type": "http"
},
"output": {
"example": {
"count": 20,
"pools": [
{
"apy": 18.4,
"apy_base": 12.1,
"apy_reward": 6.3,
"chain": "Base",
"exposure": "multi",
"il_risk": "yes",
"pool": "abc",
"project": "aerodrome",
"stablecoin": false,
"symbol": "USDC-ETH",
"tvl_usd": 4200000
}
],
"source": "defillama",
"total_pools": 15981
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"const": "GET"
},
"queryParams": {
"properties": {
"chain": {
"type": "string"
},
"limit": {
"type": "string"
},
"min_tvl": {
"type": "string"
},
"sort": {
"type": "string"
}
},
"required": [
"chain",
"min_tvl",
"sort",
"limit"
],
"type": "object"
}
},
"required": [
"method"
],
"type": "object"
}
}
}
}
}Use it
curl
curl "https://x402.shizu.me/llama/yields" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.shizu.me/llama/yields");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402.shizu.me/llama/yields")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5961.json, and this resource appears in /discovery/resources and /discovery/search.