MioDio Meridian DeFi Risk Passport - Aave v3 public risk snapshot for an EVM address (~$0
MioDio Meridian DeFi Risk Passport - Aave v3 public risk snapshot for an EVM address (~$0.04 USDC Exact on Base). MioDio x402 DeFi.
40000 (raw units)
price
6
calls / 30d
2
unique payers
2026-09-18
updated
Provider
workers.miodiollc.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x4DA1ED782BD61BaE9AdD5a5CaBbCf32f767f8d7F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "40000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"address": "0xBA9424d650A4F5c80a0dA641254d1AcCE2A37057"
},
"queryParams": {
"chain": "base"
},
"type": "http"
},
"output": {
"example": {
"aave_v3": {
"available_borrows_usd": "5.67",
"health_factor": "3.21",
"liquidation_threshold_pct": "82.50",
"ltv_pct": "75.00",
"pool": "0xA238Dd80C259a72e81d7e4664a9801593F98d1c5",
"protocol": "aave_v3",
"raw": {
"availableBorrowsBase": "567000000",
"currentLiquidationThreshold": "8250",
"healthFactor": "3210000000000000000",
"ltv": "7500",
"totalCollateralBase": "1234000000",
"totalDebtBase": "100000000"
},
"total_collateral_usd": "12.34",
"total_debt_usd": "1.00"
},
"address": "0x0000000000000000000000000000000000000001",
"as_of": "2026-09-14T00:00:00.000Z",
"chain": "base",
"disclaimer": "MioDio DeFi Risk Passport (MVP). Best-effort public on-chain reads only. Not financial, legal, or investment advice. No KYC/social enrichment. Balances are never invented — missing fields mean the read failed or was not attempted. Always verify on-chain.",
"hooks": {
"next": [
"Optional: stablecoin exposure breakdown via UiPoolDataProvider"
],
"notes": [
"MVP uses Aave v3 Pool.getUserAccountData only (collateral, debt, HF).",
"No social scrapes, no off-chain enrichment resale."
]
},
"product": "mio_dio_defi_risk_passport",
"status": "ok",
"version": "0.3.3"
},
"type": "json"
}
},
"routeTemplate": "/v1/risk/:address",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"address": {
"description": "EVM address (checksummed or 0x-prefixed hex) to snapshot on Aave v3",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"queryParams": {
"properties": {
"chain": {
"description": "Aave v3 read chain (public RPC). Defaults to base. Independent of the USDC payment network.",
"enum": [
"base",
"ethereum"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"aave_v3": {
"type": [
"object",
"null"
]
},
"address": {
"type": "string"
},
"as_of": {
"type": "string"
},
"chain": {
"enum": [
"base",
"ethereum"
],
"type": "string"
},
"disclaimer": {
"type": "string"
},
"errors": {
"items": {
"type": "string"
},
"type": "array"
},
"hooks": {
"type": "object"
},
"product": {
"const": "mio_dio_defi_risk_passport",
"type": "string"
},
"status": {
"enum": [
"ok",
"partial"
],
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"product",
"version",
"status",
"address",
"chain",
"as_of",
"disclaimer",
"aave_v3",
"hooks"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://workers.miodiollc.com/v1/risk/:address" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://workers.miodiollc.com/v1/risk/:address");
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://workers.miodiollc.com/v1/risk/:address")
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/6774.json, and this resource appears in /discovery/resources and /discovery/search.