curl --request GET \
--url https://api.messari.io/token-unlocks/v1/assets/{assetId}/vesting-schedule \
--header 'X-Messari-API-Key: <api-key>'
{
"data": {
"allocations": [
{
"allocationRecipient": "<string>",
"dailySnapshots": [
{
"cumulativeUnlockedNative": 123,
"cumulativeUnlockedUSD": 123,
"percentOfUnlocksCompleted": 123,
"timestamp": "2023-11-07T05:31:56Z",
"unlocksRemainingNative": 123,
"unlocksRemainingUSD": 123
}
]
}
],
"asset": {
"id": "aSDinaTvuI8gbWludGxpZnk=",
"name": "<string>",
"slug": "<string>",
"symbol": "<string>"
},
"endTime": "2023-11-07T05:31:56Z",
"genesisDate": "2023-11-07T05:31:56Z",
"projectedEndDate": "2023-11-07T05:31:56Z",
"startTime": "2023-11-07T05:31:56Z",
"totalDailySnapshots": [
{
"cumulativeUnlockedNative": 123,
"cumulativeUnlockedUSD": 123,
"percentOfUnlocksCompleted": 123,
"timestamp": "2023-11-07T05:31:56Z",
"unlocksRemainingNative": 123,
"unlocksRemainingUSD": 123
}
]
},
"error": "<string>"
}
Returns vesting schedule timeseries data for a given asset
curl --request GET \
--url https://api.messari.io/token-unlocks/v1/assets/{assetId}/vesting-schedule \
--header 'X-Messari-API-Key: <api-key>'
{
"data": {
"allocations": [
{
"allocationRecipient": "<string>",
"dailySnapshots": [
{
"cumulativeUnlockedNative": 123,
"cumulativeUnlockedUSD": 123,
"percentOfUnlocksCompleted": 123,
"timestamp": "2023-11-07T05:31:56Z",
"unlocksRemainingNative": 123,
"unlocksRemainingUSD": 123
}
]
}
],
"asset": {
"id": "aSDinaTvuI8gbWludGxpZnk=",
"name": "<string>",
"slug": "<string>",
"symbol": "<string>"
},
"endTime": "2023-11-07T05:31:56Z",
"genesisDate": "2023-11-07T05:31:56Z",
"projectedEndDate": "2023-11-07T05:31:56Z",
"startTime": "2023-11-07T05:31:56Z",
"totalDailySnapshots": [
{
"cumulativeUnlockedNative": 123,
"cumulativeUnlockedUSD": 123,
"percentOfUnlocksCompleted": 123,
"timestamp": "2023-11-07T05:31:56Z",
"unlocksRemainingNative": 123,
"unlocksRemainingUSD": 123
}
]
},
"error": "<string>"
}
RFC3339 formatted start time
RFC3339 formatted end time
Default response
The response is of type object
.