Aave V2 APIs
  • Introduction
  • aave v2
    • aToken Address
    • Aave Reserve Rates
    • Aave Reserve Configuration
    • User Health
    • Allowance
    • Deposit
    • Withdraw
    • Borrow
    • Repay
    • Switch Interest Type
    • Collateral Setting
Powered by GitBook
On this page

Was this helpful?

  1. aave v2

User Health

Returns the configuration of the user across all the reserves.

/aave/user-health

POST https://cryptotalk-public-gateway-byeii62k.de.gateway.dev/aave/user-health

1) Request body must be of type JSON. 2) Body structure { "params" : { "addr" : "0xabcd...efe" } }

Query Parameters

Name
Type
Description

key

string

API Key

Request Body

Name
Type
Description

params

object

{ addr: "0x0eb4add4ba497357546da7f5d12d39587ca24606" }S{

  "isError": false,
  "errorMsg": "OK",
  "data": {
    "healthFactor": 1.79,
    "availableBorrowsETH": 23.3408,
    "totalCollateralETH": 78.069,
    "totalDebtETH": 33.47,
    "liquidationThreshold": 0.7707
  }
}

PreviousAave Reserve ConfigurationNextAllowance

Last updated 4 years ago

Was this helpful?