get_yield_pools
Retrieve DeFi yield pool data from yields.llama.fi, including symbol, project, TVL, APY, and predictions. Optionally filter results by chain or project for focused insights.
Instructions
Fetch DeFi yield pools from the yields.llama.fi API, optionally filtering by chain or project.
Returns symbol, project, tvlUsd, apy, apyMean30d, and predictions for each pool.
Args:
chain: Optional filter for blockchain (e.g., 'Ethereum', 'Solana')
project: Optional filter for project name (e.g., 'lido', 'aave-v3')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | No | ||
project | No |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"default": null,
"title": "Chain",
"type": "string"
},
"project": {
"default": null,
"title": "Project",
"type": "string"
}
},
"title": "get_yield_poolsArguments",
"type": "object"
}