Skip to main content

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
View Code

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
View Code

Get Strategy Metrics

Returns real-time strategy metrics including share price, TVL, and APY for a specific strategy.
getStrategyMetrics
View Code

Get Strategy Info

Live on-chain read of a strategy’s share price and underlying balances.
getStrategyInfo
View Code

Get Strategy Historical Metrics

Time-series data for charting strategy share price, TVL, fees, and APY.
getStrategyHistoricalMetrics
View Code

Get Total TVL

Returns aggregate total value locked across all live strategies.
getTotalTvl
View Code

Get Strategy Fees and Rewards

Returns fees and rewards earned across all strategies over a chosen time period (24h, 7d, or 30d).
getStrategyFeesAndRewards
View Code

Strategy Types

TypeScript shapes used by the Kliquidity SDK for strategy reads — both arguments (e.g. StrategiesFilters) and return values.
On-chain strategy account paired with its address.

Additional Resources

API Examples

SDK Examples