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:

x-api-key: YOUR_API_KEY

📦 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 asset

    • assetName: Token symbol (e.g. "USDT", "DAI")

    • network: Network name (e.g. "polygon", "gnosis")

    • networkId: Network chain ID

    • implementationSelector: Protocol implementation identifier

    • startDate: Strategy launch date

    • underlyingAsset: Contract address of the underlying token

    • assetDecimals: Number of decimals for the strategy asset

    • underlyingDecimals: Number of decimals for the underlying token

    • id: Unique strategy identifier

    • fee: Strategy fee percentage

    • metadata: Object containing localized risk, volatility and description information

    • logourl: URL for the token logo image

  • pagination: Object containing pagination details:

    • totalRecords: Total number of records

    • offset: Current offset

    • limit: Records per page

    • totalPages: Total number of pages

    • page: Current page number

    • hasPrevPage: Whether previous page exists

    • hasNextPage: Whether next page exists

    • prevPage: Previous page number

    • nextPage: Next page number

Example Response:

Last updated