get_recent_borrows
Retrieve recent AAVE borrow events. Filter by chain, user address, or asset symbol to get borrower, amount, rate, and timestamp.
Instructions
Use this when the user asks about recent borrowing activity on AAVE — 'Who has been borrowing USDC on Ethereum?', 'Show me recent WETH borrows on Arbitrum', 'What has address 0x... borrowed recently?', 'Show borrow volume by asset'. Returns borrow events with: borrower address, asset, raw amount, borrow rate, rate mode (variable=2/stable=1), and timestamp. Divide amount by 10^decimals for human-readable value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain | Yes | Chain identifier | |
| first | No | Number of borrow events to return (1–100, default 20) | |
| userAddress | No | Optional: filter by borrower Ethereum address (0x...) | |
| reserveSymbol | No | Optional: filter by asset symbol (e.g. USDC, WETH, DAI) |