Skip to main content
GET
/
kamino-market
/
{pubkey}
/
reserves
/
metrics
Get metrics for market reserves
curl --request GET \
  --url https://api.kamino.finance/kamino-market/{pubkey}/reserves/metrics
[
  {
    "reserve": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
    "liquidityToken": "SOL",
    "liquidityTokenMint": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
    "maxLtv": "0.65",
    "borrowApy": "0.05450988511483601",
    "supplyApy": "0.038266801210808055",
    "totalSupply": "1234.56789",
    "totalBorrow": "1234.56789",
    "totalBorrowUsd": "1234.56789",
    "totalSupplyUsd": "1234.56789"
  }
]

Path Parameters

pubkey
string
required

Market public key

Example:

"7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF"

Query Parameters

env
enum<string>
default:mainnet-beta

Solana cluster environment

Available options:
mainnet-beta,
devnet,
localnet
Example:

"mainnet-beta"

Response

OK

reserve
string
required

Reserve public key

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

liquidityToken
string
required

Liquidity token symbol

Example:

"SOL"

liquidityTokenMint
string
required

Liquidity token mint address

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

maxLtv
string
required

Maximum loan-to-value ratio

Example:

"0.65"

borrowApy
string
required

Current borrow APY

Example:

"0.05450988511483601"

supplyApy
string
required

Current supply APY

Example:

"0.038266801210808055"

totalSupply
string
required

Total supply amount

Example:

"1234.56789"

totalBorrow
string
required

Total borrow amount

Example:

"1234.56789"

totalBorrowUsd
string
required

Total borrow in USD

Example:

"1234.56789"

totalSupplyUsd
string
required

Total supply in USD

Example:

"1234.56789"