GET /strategies
🔹 Get All Strategies
🌐 Endpoint
GET https://client.deframe.io/v1/strategies
📝 Overview
Retrieve a list of all available lending strategies across different protocols and networks.
🔑 Authentication
This API requires authentication using an API key. Include your API key in the request headers:
📦 Response
Returns a JSON object containing:
data
: Array of strategy objects with the following properties:protocol
: The lending protocol (e.g. "Aave")asset
: Contract address of the strategy assetassetName
: Token symbol (e.g. "USDT", "DAI")network
: Network name (e.g. "polygon", "gnosis")networkId
: Network chain IDimplementationSelector
: Protocol implementation identifierstartDate
: Strategy launch dateunderlyingAsset
: Contract address of the underlying tokenassetDecimals
: Number of decimals for the strategy assetunderlyingDecimals
: Number of decimals for the underlying tokenid
: Unique strategy identifierfee
: Strategy fee percentagemetadata
: Object containing localized risk, volatility and description informationlogourl
: URL for the token logo image
pagination
: Object containing pagination details:totalRecords
: Total number of recordsoffset
: Current offsetlimit
: Records per pagetotalPages
: Total number of pagespage
: Current page numberhasPrevPage
: Whether previous page existshasNextPage
: Whether next page existsprevPage
: Previous page numbernextPage
: Next page number
Example Response:
Last updated