> ## Documentation Index
> Fetch the complete documentation index at: https://docs.amberdata.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Information - Assets in Lending Protocols

> This API lists the supported assets across the available lending protocols and provides snapshots of aggregate metrics.



## OpenAPI

````yaml get /lending/assets/information
openapi: 3.1.0
info:
  title: Defi API
  version: '2'
servers:
  - url: https://api.amberdata.com/defi
security:
  - sec0: []
paths:
  /lending/assets/information:
    get:
      summary: Information - Assets in Lending Protocols
      description: >-
        This API lists the supported assets across the available lending
        protocols and provides snapshots of aggregate metrics.
      operationId: defi-lending-information-assets
      parameters:
        - name: blockchain
          in: query
          description: The blockchainId or blockchain slug to filter results by
          schema:
            type: string
            enum:
              - ethereum-mainnet
              - polygon-mainnet
              - avalanche-mainnet
              - arbitrum-mainnet
              - optimism-mainnet
        - name: protocol
          in: query
          description: The protocol to filter results by
          schema:
            type: string
            enum:
              - makerdao
              - compound
              - compoundv2
              - compoundv3
              - aave
              - aavev2
              - aavev3
        - name: asset
          in: query
          description: The asset id or symbol to filter the results by.
          schema:
            type: string
        - name: market
          in: query
          description: The market id or name to filter the results by.
          schema:
            type: string
        - name: endDate
          in: query
          description: >-
            **[Optional]** If provided, returns the associated state of this
            asset up to the specified date since the first transaction involving
            this asset. <BR><BR>If not specified, returns the **current** (now)
            state of the asset since the first transaction involving the asset.
            <BR><BR>**[Examples]** `2023-01-01`
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                    default: 0
                  title:
                    type: string
                    example: OK
                  description:
                    type: string
                    example: Successful request
                  payload:
                    type: array
                    items:
                      type: object
                      properties:
                        protocolId:
                          type: string
                          example: aavev2
                        protocolName:
                          type: string
                          example: aave
                        protocolVersion:
                          type: string
                          example: v2
                        blockchain:
                          type: string
                          example: ethereum-mainnet
                        assetId:
                          type: string
                          example: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599'
                        assetSymbol:
                          type: string
                          example: WBTC
                        market:
                          type: string
                          example: main
                        decimals:
                          type: integer
                          example: 8
                          default: 0
                        borrowRateStable:
                          type: number
                          example: 0.04319282678448013
                          default: 0
                        borrowRateVariable:
                          type: number
                          example: 0.005277130713792051
                          default: 0
                        lendRate:
                          type: number
                          example: 0.000181012705707908
                          default: 0
                        totalDepositedUSD:
                          type: number
                          example: 588524548.0301714
                          default: 0
                        totalCollateralUSD:
                          type: number
                          example: 588062085.8247572
                          default: 0
                        totalBorrowedUSD:
                          type: number
                          example: 50467940.46065201
                          default: 0
                        totalLiquidationsUSD:
                          type: number
                          example: 224678377.90751523
                          default: 0
                        loanToValueRatio:
                          type: number
                          example: 0.72
                          default: 0
                        isActive:
                          type: boolean
                          example: true
                          default: true
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      x-default: API_KEY
      name: x-api-key

````