getAaveReserveData
Retrieve Aave reserve data, including liquidity, debt details, and interest rates, by providing the asset token address and chain ID for Ethereum-based automation.
Instructions
Fetches reserve data for a given asset from Aave including available liquidity, total stable and variable debt, and interest rates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset | Yes | The token contract address of the asset. | |
chainId | Yes | Chain ID where Aave is deployed. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"asset": {
"description": "The token contract address of the asset.",
"type": "string"
},
"chainId": {
"description": "Chain ID where Aave is deployed.",
"type": "number"
}
},
"required": [
"asset",
"chainId"
],
"type": "object"
}