DeFi Lending API
Integration Steps:
{
"name": "string", // The protocol's name.
"totalUsers": number, // (Optional) Total number of individual wallets deposited into the protocol.
"totalBalanceUsd": number, // (Optional) The total balance held in USD.
"supportedVaults": [ // Array of protocol's lending options
{
"label": "string", // Version of the lending market or strategy.
"stakelink": "string", // Link to the official UI for this lending market
"slug": "string", // The slug of the supplied asset (Coingecko ID or learn more below).
"chain": "string", // The chain the asset needs to be supplied.
"balance": number, // The number of tokens supplied.
"users": number, // Individual wallets utilizing the strategy.
"apr": number, // Annual percentage rate before fees.
"aprBreakdown": [ // (Optional) Reward Rate payout currencies.
{
"slug": "string", // The token slug (Coingecko ID or learn more below).
"apr": number // Proportion of this token on the total APR in decimals.
}
],
"fee": [ // The fees taken by the protocol.
{
"management_fee": number, // Fee percentage the protocol takes for managing the lending option.
"performance_fee": number, // Fee percentage the protocol takes on the lending option performance.
"deposit_fee": number, // Fee percentage the protocol takes on deposits into the lending option.
"exit_fee": number // Fee percentage the protocol takes when exiting the lending option.
}
],
"capacity": number, // (Optional) Free capacity of token that can be deposited.
"maxLTV": number, // (Optional) Maximum borrowing power of a specific asset in percentage.
"utilization": number, // (Optional) current utilization in percentage.
"isolatedRisk": boolean, // (Optional) separate smart contract per asset.
"liquidationPenalty": number, // (Optional) Penalty in percentage.
"pointsBreakdown": [ // (Optional) Points on top of the vaults.
{
"name": "string" // The issuer of the points.
}
]
}
]
}2. Requesting Staking Rewards Asset and Operator Slugs
Last updated