DeFi yield and APY across pools
DeFi yield and APY across pools. Returns the top yield-farming pools via DefiLlama with current APY, base and reward APY split, TVL, chain, and project, filterable by chain, project, symbol, stablecoin-only, minimum TVL, and minimum APY. For yield discovery and comparing APY across protocols. Keyless.
30000 (raw units)
price
18
calls / 30d
2
unique payers
2026-09-16
updated
Provider
api.kadec0.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x4df66B6c140778fe0717880A7c6dDE5Ea53AcDeA",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"chain": "Ethereum",
"maxItems": "10",
"minTvl": "5000000",
"stablecoin": "true"
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"items": [
{
"apy": 2.284,
"apyBase": 2.284,
"chain": "Ethereum",
"exposure": "single",
"ilRisk": "no",
"project": "lido",
"stablecoin": false,
"symbol": "STETH",
"tvlUsd": 15508339626,
"type": "yield_pool"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"chain": {
"description": "e.g. Ethereum|Arbitrum|Solana",
"type": "string"
},
"maxItems": {
"default": "25",
"type": "string"
},
"minApy": {
"default": "0",
"type": "string"
},
"minTvl": {
"default": "1000000",
"type": "string"
},
"project": {
"description": "e.g. aave-v3|lido|uniswap-v3",
"type": "string"
},
"stablecoin": {
"description": "true -> stablecoin pools only",
"type": "string"
},
"stablecoinOnly": {
"description": "Alias for stablecoin; stablecoin takes precedence if both are supplied",
"type": "string"
},
"symbol": {
"description": "pool symbol substring, e.g. USDC|ETH",
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.kadec0.xyz/v1/yield-pools" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.kadec0.xyz/v1/yield-pools");
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://api.kadec0.xyz/v1/yield-pools")
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/329.json, and this resource appears in /discovery/resources and /discovery/search.