get_vault_apy_history
Retrieve historical Annual Percentage Yield (APY) data for a specific vault by providing its address and a time range with interval options.
Instructions
Get historical APY data for a vault.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
options | Yes |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"type": "string"
},
"options": {
"properties": {
"endTimestamp": {
"type": "number"
},
"interval": {
"enum": [
"HOUR",
"DAY",
"WEEK",
"MONTH"
],
"type": "string"
},
"startTimestamp": {
"type": "number"
}
},
"required": [
"startTimestamp",
"endTimestamp",
"interval"
],
"type": "object"
}
},
"required": [
"address",
"options"
],
"type": "object"
}