cURL
curl --request GET \ --url https://api.kamino.finance/kamino-market/{market-id}/overview
{ "marketId": "<string>", "totalSupplyUsd": "<string>", "totalBorrowUsd": "<string>", "totalAvailableLiquidityUsd": "<string>", "averageSupplyApy": "<string>", "averageBorrowApy": "<string>", "totalReserves": 123, "activeObligations": 123, "totalUsers": 123, "marketUtilization": "<string>", "topReserves": [ { "reserve": "<string>", "liquidityToken": "<string>", "totalSupplyUsd": "<string>", "totalBorrowUsd": "<string>", "utilization": "<string>", "supplyApy": "<string>", "borrowApy": "<string>" } ], "marketStats": { "totalFeesCollectedUsd": "<string>", "totalFeesCollectedLast24h": "<string>", "totalLiquidationsUsd": "<string>", "totalLiquidationsLast24h": "<string>", "averageHealthFactor": 123, "riskLevel": "<string>" }, "priceData": { "solPrice": "<string>", "usdcPrice": "<string>", "lastUpdated": "<string>" } }
Get comprehensive lending market statistics and summary
curl --request GET \ --url https://api.kamino.finance/kamino-market/7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF/overview?env=mainnet-beta
{ "marketId": "7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF", "totalSupplyUsd": "15847264.82", "totalBorrowUsd": "9823456.12", "totalAvailableLiquidityUsd": "6023808.70", "averageSupplyApy": "0.0398", "averageBorrowApy": "0.0587", "totalReserves": 8, "activeObligations": 2847, "totalUsers": 3521, "marketUtilization": "0.6198", "topReserves": [ { "reserve": "8PbodeaosQP19SjYFx855UMqWxH2HynZLdBXmsrbac36", "liquidityToken": "USDC", "totalSupplyUsd": "5647821.46", "totalBorrowUsd": "3982134.57", "utilization": "0.7051", "supplyApy": "0.0385", "borrowApy": "0.0595" }, { "reserve": "2b1kV6DkPAnxd5ixfnxCpjxmKwqjjaYmCZfHsFu24GXo", "liquidityToken": "SOL", "totalSupplyUsd": "2785432.15", "totalBorrowUsd": "1785621.45", "utilization": "0.6412", "supplyApy": "0.0425", "borrowApy": "0.0625" }, { "reserve": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", "liquidityToken": "MSOL", "totalSupplyUsd": "1876543.21", "totalBorrowUsd": "987654.32", "utilization": "0.5263", "supplyApy": "0.0456", "borrowApy": "0.0678" } ], "marketStats": { "totalFeesCollectedUsd": "125687.45", "totalFeesCollectedLast24h": "342.18", "totalLiquidationsUsd": "23456.78", "totalLiquidationsLast24h": "156.89", "averageHealthFactor": 2.34, "riskLevel": "low" }, "priceData": { "solPrice": "216.87", "usdcPrice": "1.00", "lastUpdated": "2024-01-15T10:30:00Z" } }
Show topReserves properties
Show marketStats properties
Show priceData properties