Skip to main content
GET
/
kamino-market
/
{pubkey}
/
leverage
/
metrics
Get metrics for leverage/multiply vaults
curl --request GET \
  --url https://api.kamino.finance/kamino-market/{pubkey}/leverage/metrics
[
  {
    "avgLeverage": "1234.56789",
    "totalBorrowed": "1234.56789",
    "totalDeposited": "1234.56789",
    "totalBorrowedUsd": "1234.56789",
    "totalObligations": "<string>",
    "totalDepositedUsd": "1234.56789",
    "tvl": "1234.56789",
    "updatedOn": "2023-11-07T05:31:56Z",
    "depositReserve": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
    "borrowReserve": "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd",
    "tag": "Multiply"
  }
]

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

avgLeverage
string
required

Average leverage

Example:

"1234.56789"

totalBorrowed
string
required

Total borrowed amount

Example:

"1234.56789"

totalDeposited
string
required

Total deposited amount

Example:

"1234.56789"

totalBorrowedUsd
string
required

Total borrowed in USD

Example:

"1234.56789"

totalObligations
string
required

Total number of obligations

totalDepositedUsd
string
required

Total deposited in USD

Example:

"1234.56789"

tvl
string
required

Total Value Locked

Example:

"1234.56789"

updatedOn
string<date-time>
required

Last update timestamp

depositReserve
string
required

Deposit reserve public key

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

borrowReserve
string
required

Borrow reserve public key

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

tag
string
required

Tag (Multiply or Leverage)

Example:

"Multiply"