Vault History
Get MoM SEC yield history for all vaults for the given date range
Unix timestamp in seconds
Unix timestamp in seconds
1764523500Optional chain ID. Defaults to Plume: 98866
98866Vault MoM SEC APY history
GET /v1/vaults/apy-history HTTP/1.1
Host: api.nest.credit
Accept: */*
Vault MoM SEC APY history
{
"data": [
{
"vaultAddress": "text",
"history": [
{
"day": 1,
"apy": {
"rolling7d": 1,
"rolling30d": 1,
"sec30d": 1
}
}
]
}
]
}Get TVL history for all vaults for the given date range
Unix timestamp in seconds
Unix timestamp in seconds
1764523500VaultTVLHistory for all vaults
Server error
GET /v1/vaults/tvl-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": [
{
"vaultAddress": "text",
"history": [
{
"day": 1,
"tvl": 1
}
]
}
]
}Get VaultHoldersHistory for all vaults for the given date range
Unix timestamp in seconds
Unix timestamp in seconds
1764523500VaultHoldersHistory for all vaults for the given date range
Server error
GET /v1/vaults/holders-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": [
{
"vaultAddress": "text",
"history": [
{
"day": 1,
"chainId": 1,
"start": 1,
"end": 1,
"min": 1,
"max": 1,
"average": 1,
"count": 1
}
]
}
]
}Get daily volume history for all vaults for the given date range
Unix timestamp in seconds
Unix timestamp in seconds
1764523500Daily volume history for all vaults for the given date range
Server error
GET /v1/vaults/volume-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": [
{
"vaultAddress": "text",
"history": [
{
"day": 1,
"volume24h": 1
}
]
}
]
}Get MoM SEC yield history for vault by slug for the given date range
Unique slug identifier for the vault.
nest-alpha-vaultUnix timestamp in seconds
Unix timestamp in seconds
1764523500Optional chain ID. Defaults to Plume: 98866
98866Vault MoM SEC APY history
Not found
Server error
GET /v1/vaults/{slug}/apy-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": {
"vaultAddress": "text",
"history": [
{
"day": 1,
"apy": {
"rolling7d": 1,
"rolling30d": 1,
"sec30d": 1
}
}
]
}
}Get Vault TVL history by slug for the given date range
Unique slug identifier for the vault.
nest-alpha-vaultUnix timestamp in seconds
Unix timestamp in seconds
1764523500Vault TVL history
Not found
Server error
GET /v1/vaults/{slug}/tvl-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": {
"vaultAddress": "text",
"history": [
{
"day": 1,
"tvl": 1
}
]
}
}Get Vault holders history by slug
Unique slug identifier for the vault.
nest-alpha-vaultUnix timestamp in seconds
Unix timestamp in seconds
1764523500Vault holders history
Not found
Server error
GET /v1/vaults/{slug}/holders-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": {
"vaultAddress": "text",
"history": [
{
"day": 1,
"chainId": 1,
"start": 1,
"end": 1,
"min": 1,
"max": 1,
"average": 1,
"count": 1
}
]
}
}Get Vault volume history by slug for the given date range
Unique slug identifier for the vault.
nest-alpha-vaultUnix timestamp in seconds
Unix timestamp in seconds
1764523500Vault volume history
Not found
Server error
GET /v1/vaults/{slug}/volume-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": {
"vaultAddress": "text",
"history": [
{
"day": 1,
"volume24h": 1
}
]
}
}Get Vault daily price history by slug
Unique slug identifier for the vault.
nest-alpha-vaultUnix timestamp in seconds
Unix timestamp in seconds
1764523500Optional chain ID. Defaults to plume mainnet (98866)
98866Vault price history
Not found
Server error
GET /v1/vaults/{slug}/price-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": {
"vaultAddress": "text",
"history": [
{
"day": 1,
"price": 1
}
]
}
}Get Vault Liquid Funds history by slug with pagination
Unique slug identifier for the vault.
nest-alpha-vaultStart date in Unix timestamp seconds
End date in Unix timestamp seconds
Maximum number of history entries to return
50Example: 50Cursor returned from a previous request
Vault Liquid Funds history
Invalid request
Not found
Server error
GET /v1/vaults/{slug}/liquid-funds-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": {
"vaultAddress": "text",
"history": [
{
"day": 1,
"liquidFunds": 1
}
],
"pageInfo": {
"endCursor": "text",
"hasNextPage": true
}
}
}Get Vault pending redemptions history by slug with separate filters for requestedAt and expiresAt
Unique slug identifier for the vault.
nest-alpha-vaultStart date for requestedAt filter (Unix timestamp in seconds)
End date for requestedAt filter (Unix timestamp in seconds)
Start date for expiresAt filter (Unix timestamp in seconds)
End date for expiresAt filter (Unix timestamp in seconds)
Vault pending redemptions history
Not found
Server error
GET /v1/vaults/{slug}/pending-redemptions-history HTTP/1.1
Host: api.nest.credit
Accept: */*
{
"data": {
"vaultAddress": "text",
"pendingRedemptions": [
{
"requestTransactionHash": "text",
"user": "text",
"chainId": 1,
"amount": 1,
"requestedAt": 1,
"expiresAt": 1,
"wantTokenContractAddress": "text",
"minPrice": 1,
"isValid": true
}
]
}
}Last updated