curl --request GET \
--url https://api.paxoslabs.com/v1/vaults/historical-apy{
"interval": 86400,
"data": [
{
"timeStamp": 123,
"apy": 1.23
}
]
}Returns APY data for a given vault address over a specified period.
curl --request GET \
--url https://api.paxoslabs.com/v1/vaults/historical-apy{
"interval": 86400,
"data": [
{
"timeStamp": 123,
"apy": 1.23
}
]
}The address of the vault.
"0x19e099B7aEd41FA52718D780dDA74678113C0b32"
Start timestamp for the period.
1732679943
End timestamp for the period.
173868000
Intervals for the period.
86400
Number of days to look back for APY calculation. Defaults to 14 if not provided.
14
Successful response with historic APY data.