# Token Unlock & Vesting Schedule Lookup

> Token Unlock & Vesting Schedule Lookup is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the next unlock date, token amount, USD value, category, type, and upcoming vesting events for a given protocol

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/catalysts/unlocks
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-unlock-vesting-schedule-lookup-3ca18f11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_irUyzfnEN-Rtz5FqPCVuD

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 token-unlock-vesting-schedule-lookup-3ca18f11 -d '<json body>'
```

Example prompt: Pull the next token unlock schedule for Arbitrum — I want to see the upcoming unlock dates, how many tokens are unlocking, the USD value, and what category each unlock falls into, up to the next 10 events.

## When to prefer this

Use this endpoint when you need detailed token vesting and unlock schedule data for a specific protocol, including upcoming dates, amounts, USD values, and unlock categories. Prefer this over generic market data endpoints when the specific goal is to anticipate supply-side pressure from token unlocks or to monitor vesting schedules for investment timing decisions.

## Known failure modes

- Unknown or unsupported protocol slug returns an error or empty result
- Protocol slug misspelled or not recognized
- No upcoming unlock events scheduled returns empty events list
- External data source unavailable causes timeout or 500 error
- Exceeding limit of 20 events may return capped results or error

## How this service works

Token unlock / vesting schedule for a protocol: next unlock date, token amount, USD value, category and type, plus upcoming events. Send { protocol } (slug, e.g. "aptos", "arbitrum"). Large unlocks are the most reliable supply-shock catalysts — front-run sell pressure.

## Output

Returns the next unlock date, number of tokens unlocking, USD value of the unlock, the category (e.g. team, investor, ecosystem) and type of unlock, plus a list of upcoming vesting events (up to the requested limit, default 5, max 20) for the specified protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "protocol"
 ],
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max upcoming events, default 5 (max 20)"
  },
  "protocol": {
   "type": "string",
   "description": "Protocol slug, e.g. aptos, arbitrum, optimism"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-unlock-vesting-schedule-lookup-3ca18f11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
