# Messari Token Vesting Schedule

> Messari Token Vesting Schedule is a paid API for AI agents from api.messari.io, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Returns the full token vesting schedule for a specific crypto asset, including unlock dates, amounts, categories, and percent of supply.

## Facts

- Endpoint: GET https://api.messari.io/token-unlocks/v1/assets/*/vesting-schedule
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/messari-token-vesting-schedule-bf054dae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cfi_UKyubaxWLRHR_YeBO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability messari-token-vesting-schedule-bf054dae
```

Example prompt: Pull the full token vesting schedule for Arbitrum from Messari — I want to see every tranche, the unlock dates, amounts, which category each belongs to like team or investor, and what percentage of supply each represents.

## When to prefer this

Use this endpoint when you need the complete, multi-tranche vesting schedule for a crypto asset — all past and future unlock events across all categories. Prefer this over the 'upcoming unlocks' endpoint when you need historical context, full supply distribution breakdown by category (team, investors, ecosystem), or a comprehensive tokenomics analysis rather than just next scheduled events.

## Known failure modes

- Asset not found or not tracked — returns 404 or empty data if the assetId is invalid or Messari does not track vesting for that asset
- No vesting schedule available — some assets may not have structured token unlock data, returning an empty schedule array
- Authentication/payment failure — x402 payment not processed, returns 402 Payment Required
- Rate limiting — too many requests in a short window, returns 429
- Malformed assetId — passing an unrecognized slug returns an error

## How this service works

Get full token vesting schedule details for a specific crypto asset.

## Output

A structured vesting schedule object for the requested crypto asset, containing an array of vesting events each with a date, token amount to be unlocked, category (e.g. team, investor, community), and the percentage of total supply that unlock represents.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "assetId"
 ],
 "properties": {
  "assetId": {
   "type": "string",
   "description": "Asset identifier in the route path."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": {
   "assetId": "bitcoin",
   "schedule": [
    {
     "date": "2026-05-01",
     "amount": 500000,
     "category": "team",
     "percentOfSupply": 0.25
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/messari-token-vesting-schedule-bf054dae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.messari.io](https://www.zero.xyz/host/api.messari.io/llms.txt)
