# ChainRay Token Unlock Schedule

> ChainRay Token Unlock Schedule is a paid API for AI agents from chainray.online, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns token unlock schedule and vesting data for a given wallet or contract address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/token-unlock/:var1
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-token-unlock-schedule-9e575a5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ECGk5VIHr_Fmby9nBVr_3

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 chainray-token-unlock-schedule-9e575a5f
```

Example prompt: Can you pull up the token unlock schedule for contract address 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984 on Ethereum — I want to see all upcoming vesting and unlock events.

## When to prefer this

Use this endpoint when you need on-chain token vesting and unlock schedule data for a specific address on a supported blockchain. Prefer this over generic block explorers when you need structured, agent-readable unlock data with multi-chain support. Ideal for DeFi research, tokenomics analysis, or monitoring when project team/investor tokens become liquid.

## Known failure modes

- Invalid or malformed wallet/contract address returns 400 error
- Unsupported blockchain network for the 'chain' parameter returns an error
- Address has no token unlock data or vesting contracts associated returns empty result
- Network congestion or node issues may cause timeout
- Payment failure via x402 protocol returns 402 status

## How this service works

ChainRay /token-unlock

## Output

Returns token unlock schedule data for the specified address including upcoming unlock dates, amounts to be released, vesting cliff details, and historical unlock events on the requested blockchain network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network"
      },
      "address": {
       "type": "string",
       "description": "Wallet or contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-token-unlock-schedule-9e575a5f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
