# Messari Token Unlocks Asset Discovery

> Messari Token Unlocks Asset Discovery is a free API for AI agents from api.messari.io, Free, status unknown (last checked 2026-09-15).

Discover crypto assets with tracked token unlock schedules, including next unlock date and amount

## Facts

- Endpoint: POST https://api.messari.io/token-unlocks/v1/assets
- Price: Free
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/messari-token-unlocks-asset-discovery-dc7b3dd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8FBMwaAHBM0eqhKDZ7L-V

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-unlocks-asset-discovery-dc7b3dd5 -d '<json body>'
```

Example prompt: Can you pull a list of all crypto assets on Messari that have tracked token unlock schedules, so I can see which ones have upcoming unlock dates and amounts?

## When to prefer this

Use this endpoint when you need to discover and enumerate which crypto assets have token unlock schedules tracked by Messari, before drilling into per-asset unlock details. It is the right starting point for building dashboards, screening assets for unlock risk, or identifying which tokens to monitor for vesting events. Prefer this over the per-asset endpoint when you don't already know the asset slug or want to survey the full universe of tracked projects.

## Known failure modes

- Invalid filter parameters return 400 Bad Request
- Unauthorized access if API key is missing or invalid returns 401
- No assets match the filter criteria returns empty data array
- Rate limit exceeded returns 429 Too Many Requests
- Service unavailable returns 503

## How this service works

Discover crypto assets with tracked token unlock schedules.

## Output

Returns a paginated list of crypto assets that have token unlock schedules, each including the asset's id, name, slug, ticker symbol, next unlock date, and next unlock amount (e.g. Bitcoin with a next unlock on 2026-04-01 for 1,250,000 tokens).

## Response schema (JSON Schema)

```json
{
 "example": {
  "data": [
   {
    "id": "bitcoin",
    "name": "Bitcoin",
    "slug": "bitcoin",
    "symbol": "BTC",
    "nextUnlockDate": "2026-04-01",
    "nextUnlockAmount": 1250000
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/messari-token-unlocks-asset-discovery-dc7b3dd5/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)
