/vaults/{slug}/performance-history
Get vault performance history by slug for the given date range. Includes vault price/TVL/liquid funds/APY and optional per-yield-asset metrics. Vault price and NAV APY are derived from the preferred chain (Plume if configured, otherwise the first configured chain).
Get vault performance history by slug for the given date range. Includes vault price/TVL/liquid funds/APY and optional per-yield-asset metrics. Vault price and NAV APY are derived from the preferred chain (Plume if configured, otherwise the first configured chain).
Path Parameters
Unique slug identifier for the vault.
1 <= lengthQuery Parameters
Unix timestamp in seconds
Unix timestamp in seconds
1787560960Ordering for history arrays. desc returns newest first. asc returns oldest first.
"desc"Value in
- "asc"
- "desc"
Include per-yield-asset composition metrics.
falseResponse format. Use csv to export the history as CSV.
"json"Value in
- "json"
- "csv"
Response Body
application/json
application/json
curl -X GET "https://example.com/vaults/nest-alpha-vault/performance-history"{ "data": { "vaultAddress": "string", "assets": [ { "slug": "string", "name": "string" } ], "history": [ { "day": 0, "vault": { "price": 0, "tvl": 0, "liquidFunds": 0, "apy": { "rolling7d": 0, "rolling30d": 0, "sec30d": 0 }, "navApy": { "rolling7d": 0, "rolling30d": 0, "sec30d": 0 } }, "assets": { "property1": { "price": 0, "apy7d": 0, "apy30d": 0, "compositionPct": 0 }, "property2": { "price": 0, "apy7d": 0, "apy30d": 0, "compositionPct": 0 } } } ] }}