Real-Time DeFi Data
Access comprehensive DeFi vault metrics, APR rates, utilization trends, and token prices through a simple REST API. Currently supporting Fluid, with more protocols coming soon.
What You Get
Vault Metrics
APR, LTV, leverage ratios, pool utilization, and available liquidity for each vault.
Live Token Prices
Real-time USD prices for collateral and debt tokens fetched from DEX sources.
24h Trends
Pool utilization changes over the last 24 hours with trend indicators.
Single Endpoint
Query vault data across supported chains through one consistent REST surface.
Supported Protocols
Fluid Protocol
LiveGet comprehensive vault data including metrics, token prices, and utilization trends.
curl https://api.example.com/api/fluid/arbitrum/63
List all available vaults for a specific chain. Discover vault IDs before querying.
curl https://api.example.com/api/fluid/arbitrum
Pendle
Coming SoonIntegration with Pendle protocol is currently in development. Stay tuned for yield tokenization metrics.
Other Protocols
Coming SoonWe are actively working on adding support for more major DeFi protocols to the scanner.
Example Response
{
"alerts": [],
"vault": {
"vaultId": "5",
"chain": "polygon",
"collateral": "wstETH",
"debt": "WETH",
"netAPR": 19.79,
"borrowNetAPR": 1.46,
"supplyNetAPR": 2.56,
"maxLTV": 95,
"maxLeverage": 16.66,
"poolUtilizationPercent": 16.59,
"poolAvailableTokens": 2524.0893,
"poolAvailableUSD": 8025206.30,
"poolTotalBorrowTokens": 501.9528,
"poolTotalBorrowUSD": 1595931.90,
"timestamp": 1764905144
},
"tokenPrices": {
"collateral": { "token": "wstETH", "priceUSD": 3881.317258, "source": "dex" },
"debt": { "token": "WETH", "priceUSD": 3172.901198, "source": "dex" }
},
"utilization24h": {
"current": 16.59,
"previous": 17.76,
"changePercent": -6.59,
"trend": "decrease"
}
}
{
"chain": "polygon",
"count": 20,
"vaults": [
{ "vaultId": "5", "collateral": "wstETH", "debt": "WETH", "netAPR": 19.79, "poolUtilizationPercent": 16.59 },
{ "vaultId": "13", "collateral": "wstETH", "debt": "WBTC", "netAPR": 11.11, "poolUtilizationPercent": 0.00 },
{ "vaultId": "12", "collateral": "WETH", "debt": "WBTC", "netAPR": 3.10, "poolUtilizationPercent": 0.00 },
{ "vaultId": "4", "collateral": "wstETH", "debt": "USDT", "netAPR": 2.09, "poolUtilizationPercent": 8.46 },
{ "vaultId": "6", "collateral": "WETH", "debt": "POL", "netAPR": 0.29, "poolUtilizationPercent": 0.00 },
...
]
}