Get Aave V3 health factor and position risk analysis for an Ethereum address
Get Aave V3 health factor and position risk analysis for an Ethereum address
20000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-06
updated
Provider
defirisk.averonix.cloud · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0xe1C8434A6C1Be78c748dB503295380E2FCb87ADc",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb3"
},
"type": "http"
},
"output": {
"example": {
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb3",
"availableBorrowsUSD": "5000.50",
"healthFactor": "1.42",
"liquidationThreshold": "0.85",
"ltv": "0.80",
"network": "ethereum",
"protocol": "Aave V3",
"risk": "HIGH",
"timestamp": 1725456000,
"totalCollateralUSD": "15000.50",
"totalDebtUSD": "10000.00"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"address": {
"description": "Ethereum wallet address to check Aave V3 health factor",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"address": {
"type": "string"
},
"availableBorrowsUSD": {
"type": "string"
},
"healthFactor": {
"type": "string"
},
"liquidationThreshold": {
"type": "string"
},
"ltv": {
"type": "string"
},
"network": {
"type": "string"
},
"protocol": {
"type": "string"
},
"risk": {
"enum": [
"LOW",
"MEDIUM",
"HIGH",
"CRITICAL"
],
"type": "string"
},
"timestamp": {
"type": "integer"
},
"totalCollateralUSD": {
"type": "string"
},
"totalDebtUSD": {
"type": "string"
}
},
"required": [
"address",
"protocol",
"network",
"healthFactor",
"risk",
"timestamp"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://defirisk.averonix.cloud/v1/aave/health" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://defirisk.averonix.cloud/v1/aave/health");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://defirisk.averonix.cloud/v1/aave/health")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13222.json, and this resource appears in /discovery/resources and /discovery/search.