Core Integartion
Monitoring APY
Read supply and borrow APY for supported assets
Get current supply and borrow APY for an asset.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Read supply and borrow APY for supported assets
const {depositApy, borrowApy} = await sdk.apy(usdcAddress);
console.log(`Supply APY: ${(depositApy * 100).toFixed(2)}%`);
console.log(`Borrow APY: ${(borrowApy * 100).toFixed(2)}%`);