API Reference
Stats
Platform-wide statistics.
GET /v1/stats
Get platform-wide statistics including total vaults, TVL, risk distribution, and breakdowns by protocol and chain.
Example
curl https://api.philidor.io/v1/statsResponse
{
"success": true,
"data": {
"total_vaults": 724,
"total_tvl_usd": "12500000000",
"protocol_count": 9,
"chain_count": 6,
"risk_distribution": {
"prime": 180,
"core": 320,
"edge": 224
},
"tvl_by_protocol": [
{ "protocol": "Aave", "tvl_usd": "5000000000" },
{ "protocol": "Morpho", "tvl_usd": "2500000000" }
],
"tvl_by_chain": [
{ "chain": "Ethereum", "tvl_usd": "8000000000" },
{ "chain": "Base", "tvl_usd": "1500000000" }
]
}
}This is a good first endpoint to call when exploring the platform. See the Quickstart.