curl --request GET \
--url https://api.paxoslabs.com/v1/vaults/historical-tvl{
"interval": 86400,
"base_asset": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"base_asset_name": "WETH",
"data": [
{
"time_stamp": 1732679943,
"tvl": 1500000.5
}
]
}Returns TVL (Total Value Locked) data for a given vault address over a specified time period.
curl --request GET \
--url https://api.paxoslabs.com/v1/vaults/historical-tvl{
"interval": 86400,
"base_asset": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"base_asset_name": "WETH",
"data": [
{
"time_stamp": 1732679943,
"tvl": 1500000.5
}
]
}The address of the vault.
"0x19e099B7aEd41FA52718D780dDA74678113C0b32"
Start timestamp for the data range (in seconds). Defaults to 60 days ago if not provided.
1732679943
End timestamp for the data range (in seconds). Defaults to current time if not provided.
1738680000
Time interval between data points in seconds. Defaults to 86400 (1 day) if not provided.
86400
Successful response with historic TVL data.
The time interval between data points in seconds.
86400
The address of the base asset of the vault.
"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
The name of the base asset of the vault.
"WETH"
List of TVL data points for each time interval.
Show child attributes