# Token Unlock Calendar

> Token Unlock Calendar is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Converts LP-lock data into a forward-looking unlock calendar showing dates, unlock percentages, locker identities, and days-until-unlock with flags for imminent events under 30 days.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/token-unlock
- 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/token-unlock-calendar-6a2944fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jMz-FZbpA8ifBQvBAuWTI

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-calendar-6a2944fd
```

Example prompt: Pull the LP unlock calendar for token contract 0xabc123... and flag any unlocks happening within the next 30 days so I know if there's rug risk on my open position.

## When to prefer this

Use this endpoint when managing open DeFi positions and needing to assess liquidity lock expiry risk for a specific token. It is specifically designed for LP unlock calendaring with locker identity (UNCX vs Team Finance), making it superior to generic contract scanners when the primary concern is scheduled price-event risk from LP releases. Prefer this over full due-diligence endpoints when you only need forward-looking unlock timing data rather than a comprehensive audit.

## Known failure modes

- Invalid or unrecognized token contract address returns an error or empty result
- Token with no LP locks returns an empty unlock calendar
- On-chain data unavailability may cause stale or missing entries
- Non-EVM or unsupported chain addresses will not resolve
- Rate limiting or payment failure returns 402 or rejection

## How this service works

Turns raw LP-lock data into a forward calendar: each unlock with its date, the % of LP it frees, the locker (UNCX / Team Finance labelled), and days away — flagging imminent unlocks (<30 days). An LP unlock is a scheduled price event: the moment a rug becomes possible. For agents managing open positions.

## Output

Returns a structured calendar of scheduled LP unlock events for the given token contract. Each entry includes the unlock date, the percentage of LP tokens being released, the locker platform (UNCX or Team Finance), and the number of days until the unlock occurs. Imminent unlocks within 30 days are explicitly flagged to highlight elevated rug-pull risk windows.

## 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": {
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-unlock-calendar-6a2944fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
