getYieldHistoryTool
Fetch and analyze historical yield data for a specific pool using DefiLlama. Input pool ID and days (1-365) to retrieve precise insights for cryptocurrency research.
Instructions
Fetches and analyzes historical yield data for a specific pool from DefiLlama
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days of historical data to return (max 365) | |
poolId | Yes | The DefiLlama pool ID to fetch historical yield data for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"days": {
"default": 30,
"description": "Number of days of historical data to return (max 365)",
"maximum": 365,
"minimum": 1,
"type": "number"
},
"poolId": {
"description": "The DefiLlama pool ID to fetch historical yield data for",
"type": "string"
}
},
"required": [
"poolId"
],
"type": "object"
}