GET
/
token-unlocks
/
v1
/
allocations
Get Allocations information by asset IDs
curl --request GET \
  --url https://api.messari.io/token-unlocks/v1/allocations \
  --header 'X-Messari-API-Key: <api-key>'
{
  "data": [
    {
      "allocationRecipientCount": 123,
      "allocations": [
        {
          "allocationRecipient": "<string>",
          "assumptions": "<string>",
          "cumulativeUnlockedNative": 123,
          "cumulativeUnlockedUSD": 123,
          "description": "<string>",
          "percentOfUnlocksCompleted": 123,
          "sources": [
            {
              "source": "<string>",
              "sourceType": "<string>"
            }
          ],
          "totalAllocationNative": 123,
          "totalAllocationUSD": 123,
          "unlocksRemainingNative": 123,
          "unlocksRemainingUSD": 123
        }
      ],
      "asset": {
        "id": "aSDinaTvuI8gbWludGxpZnk=",
        "name": "<string>",
        "slug": "<string>",
        "symbol": "<string>"
      },
      "cumulativeUnlockedNative": 123,
      "cumulativeUnlockedUSD": 123,
      "genesisDate": "2023-11-07T05:31:56Z",
      "lastUpdatedAt": "2023-11-07T05:31:56Z",
      "percentOfUnlocksCompleted": 123,
      "projectedEndDate": "2023-11-07T05:31:56Z",
      "totalAllocationNative": 123,
      "totalAllocationUSD": 123,
      "unlocksRemainingNative": 123,
      "unlocksRemainingUSD": 123
    }
  ],
  "error": "<string>"
}

Authorizations

X-Messari-API-Key
string
header
required

Query Parameters

assetIDs
string[]

Comma-separated list of asset IDs to look allocations up by

Response

200
application/json

Default response

The response is of type object.