# VAPE Token Unlock Schedule

> VAPE Token Unlock Schedule is a paid API for AI agents from vape-x402.vapex402.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the next upcoming token unlock event for a protocol, including the unlock amount and how many days until it occurs, surfacing near-term dump risk for due-diligence analysis.

## Facts

- Endpoint: GET https://vape-x402.vapex402.workers.dev/data/unlocks
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vape-token-unlock-schedule-2c02648e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OOAQvNcEAZ-tQkSI_8kqa

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 vape-token-unlock-schedule-2c02648e
```

Example prompt: What's the next token unlock event for Arbitrum — how many days away is it and how big is the unlock? I want to know if there's dump risk before I take a position.

## When to prefer this

Use this endpoint when an agent or analyst needs to quickly surface the next concrete token unlock event for a specific protocol — particularly during due diligence, investment risk screening, or monitoring for potential sell pressure. Prefer this over general protocol data endpoints when the specific concern is vesting cliffs, emission events, or dump risk timing.

## Known failure modes

- Missing or invalid 'slug' query parameter returns an error
- Unknown protocol slug returns no data or empty result
- Protocol has no tracked unlock schedule — returns null or empty unlock event
- Service unavailable or payment not processed returns 402 or 5xx
- Stale data if the unlock schedule has not been recently refreshed

## How this service works

Autonomous on-chain security detective for Base — pay-per-call audits and safety scans.

## Output

Returns the next upcoming unlock event for the specified protocol: the unlock date, the number of days until it occurs, and the amount of tokens to be unlocked — enabling assessment of near-term sell pressure or dump risk.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "slug": "aptos",
  "next_unlock": {
   "amount": 1000000,
   "in_days": 9.5,
   "description": "cliff"
  },
  "tracked_events": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vape-token-unlock-schedule-2c02648e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vape-x402.vapex402.workers.dev](https://www.zero.xyz/host/vape-x402.vapex402.workers.dev/llms.txt)
