get https://api.amberdata.com/defi/lending/assets/information
This API lists the supported assets across the available lending protocols and provides snapshots of aggregate metrics.
Response Data
field | type | description |
---|---|---|
protocolId | string | The specific protocol deployment in human readable form |
protocolName | string | The overarching protocol name |
protocolVersion | number | The specific version of the protocol's deployment |
blockchain | string | The blockchain that this protocol instance is deployed on |
assetId | string | The smart contract address of this asset |
assetSymbol | string | The human readable, short form identifier of this asset |
market | string | Each asset can belong to a market on the protocol it is available on |
decimals | number | The decimals for this asset |
borrowRateStable | number | The fixed borrowing rate for this asset, if applicable in the protocol |
borrowRateVariable | number | The dynamic borrowing rate for this asset, if applicable in the protocol |
lendRate | number | The interest rate for lenders of this asset |
totalDepositedUSD | number | The cumulative US dollar value of deposits for this asset, at an instance in time. Without endDate , this represents the cumulative US dollar value of all deposits right now i.e. the moment this endpoint was called |
totalBorrowedUSD | number | The cumulative US dollar value of borrows for this assets, at an instance in time. Without endDate , this represents the cumulative US dollar value of all borrows right now i.e. the moment this endpoint was called |
totalLiquidationsUSD | number | The cumulative US dollar value of all liquidations for this asset, at an instance in time. Without endDate , this represents the cumulative US dollar value of all liquidations right now i.e. the moment this endpoint was called |
loanToValueRatio | number | The maximum loan value for this asset. Ranges from 0 to 1. Example: Suppose we have deposited $100 US dollars worth of this asset. With a loanToValueRatio of 0.8, the maximum borrowing capacity is $80 US dollars (100 * 0.8). An LTV ratio of 0 could mean the asset was frozen by governance due to high volatility or other risk. |
isActive | boolean | true indicates that the asset is still active on the protocol and be borrowed or lent. false indicates that activity has been paused due to governance or other events |