# Get metrics for market reserves Get current metrics for all reserves in a Kamino Lending market, including APY, TVL, borrow/supply amounts, and LTV ratios. Endpoint: GET /kamino-market/{pubkey}/reserves/metrics Version: 1.0.0 ## Path parameters: - `pubkey` (string, required) Market public key Example: "7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF" ## Query parameters: - `env` (string) Solana cluster environment Enum: "mainnet-beta", "devnet", "localnet" ## Response 200 fields (application/json): - `reserve` (string, required) Market public key Example: "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd" - `liquidityToken` (string, required) Liquidity token symbol Example: "SOL" - `liquidityTokenMint` (string, required) Market public key Example: "VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd" - `maxLtv` (string, required) Total Value Locked in USD Example: "0.65" - `borrowApy` (string, required) Borrow interest APY Example: "0.05450988511483601" - `supplyApy` (string, required) Borrow interest APY Example: "0.038266801210808055" - `totalSupply` (string, required) Total Value Locked in USD Example: "1234.56789" - `totalBorrow` (string, required) Total Value Locked in USD Example: "1234.56789" - `totalBorrowUsd` (string, required) Total Value Locked in USD Example: "1234.56789" - `totalSupplyUsd` (string, required) Total Value Locked in USD Example: "1234.56789" ## Response 500 fields (application/json): - `error` (string, required) Error message for internal server failure Example: "An internal error occurred"