Skip to main content
GET
https://api.kamino.finance
/
kamino-market
/
{market-id}
/
overview
Market Overview
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>"
  }
}

This endpoint returns a comprehensive overview of the lending market including total values, number of users, top reserves, and key market metrics.

Path Parameters

market-id
string
required
The lending market ID to get overview for

Query Parameters

env
string
default:"mainnet-beta"
The Solana network environment

Request Example

curl --request GET \
  --url https://api.kamino.finance/kamino-market/7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF/overview?env=mainnet-beta

Response Example

{
  "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"
  }
}

Response Fields

marketId
string
The lending market ID
totalSupplyUsd
string
Total value supplied across all reserves in USD
totalBorrowUsd
string
Total value borrowed across all reserves in USD
totalAvailableLiquidityUsd
string
Total available liquidity across all reserves in USD
averageSupplyApy
string
Volume-weighted average supply APY across reserves
averageBorrowApy
string
Volume-weighted average borrow APY across reserves
totalReserves
number
Total number of reserves in the market
activeObligations
number
Number of active user obligations (positions with debt)
totalUsers
number
Total number of unique users in the market
marketUtilization
string
Overall market utilization ratio
topReserves
array
Top 5 reserves by total supply value
marketStats
object
Additional market statistics
priceData
object
Current price information