Reading Strategy Data
Retrieve strategy metadata, share price, TVL, APY, and aggregate metrics using the Kamino SDK and API.Historical strategy data is only available via the API. For the TypeScript shapes used by the methods below — both arguments and return values — see Strategy Types.
Get All Strategies
Fetches all live strategies from the API. Returns an array of strategy objects with addresses and pool metadata.getAllStrategies
Get Strategies with Filters
Filter strategies by type, status, community, or owner using the SDK. These filtering options aren’t exposed by the public API.getStrategiesWithFilters
Get Strategy Metrics
Returns real-time strategy metrics including share price, TVL, and APY for a specific strategy.getStrategyMetrics
Get Strategy Info
Live on-chain read of a strategy’s share price and underlying balances.getStrategyInfo
Get Strategy Historical Metrics
Time-series data for charting strategy share price, TVL, fees, and APY.getStrategyHistoricalMetrics
Get Total TVL
Returns aggregate total value locked across all live strategies.getTotalTvl
Get Strategy Fees and Rewards
Returns fees and rewards earned across all strategies over a chosen time period (24h, 7d, or 30d).
getStrategyFeesAndRewards
Strategy Types
TypeScript shapes used by the Kliquidity SDK for strategy reads — both arguments (e.g.StrategiesFilters) and return values.
- StrategyWithAddress
- StrategyBalances
- PriceData
- StrategyPrices
- StrategiesFilters
On-chain strategy account paired with its address.