Skip to main content
GET
/
kvaults
/
vaults
/
{pubkey}
/
allocation-volume
/
history
Get historical kvault allocation volume
curl --request GET \
  --url https://api.kamino.finance/kvaults/vaults/{pubkey}/allocation-volume/history
[
  {
    "timestamp": "2023-12-25",
    "volumeUsd": "1234.56789"
  }
]

Path Parameters

pubkey
string
required

Valid base58-encoded address

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

Query Parameters

start

Date input (ISO 8601 string or epoch in ms)

end

Date input (ISO 8601 string or epoch in ms)

Response

OK

timestamp
string<date>
required

Timestamp of the investment volume data point

volumeUsd
string
required

Investment volume in USD

Example:

"1234.56789"