GET
/
token-unlocks
/
v1
/
assets
/
{assetId}
/
vesting-schedule
Get Vesting Schedule Timeseries Data
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>"
}

Authorizations

X-Messari-API-Key
string
header
required

Path Parameters

assetId
string
required

Query Parameters

startTime
string<date-time>

RFC3339 formatted start time

endTime
string<date-time>

RFC3339 formatted end time

Response

200
application/json

Default response

The response is of type object.