# Token Unlock/Vesting Calendar Lookup

> Token Unlock/Vesting Calendar Lookup is a paid API for AI agents from api.jarvis-x402.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-16).

Queries DropsTab and Tokenomist to retrieve the next token unlock or vesting event for a specified cryptocurrency project.

## Facts

- Endpoint: POST https://api.jarvis-x402.com/desbloqueos-pago
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-unlock-vesting-calendar-lookup-d2a48542
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wW74CLIol-r-634NB2l2M

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-calendar-lookup-d2a48542 -d '<json body>'
```

Example prompt: When is the next token unlock event for Arbitrum? Pull data from both DropsTab and Tokenomist and tell me the date, amount, and any details about the upcoming release.

## When to prefer this

Use this endpoint when you need real-time or near-real-time token unlock/vesting schedule data for a specific cryptocurrency project, especially when cross-referencing two data sources (DropsTab and Tokenomist) is important for accuracy. Prefer this over manual research or single-source lookups when you want aggregated vesting event data quickly for trading decisions or portfolio risk assessment.

## Known failure modes

- Token name not recognized by either data source — returns empty or error response
- Project has no upcoming unlock events scheduled — response may indicate no data
- Data source (DropsTab or Tokenomist) temporarily unavailable — partial or degraded response
- Misspelled or ambiguous token name causes lookup failure
- Rate limiting or upstream API errors from third-party data providers

## How this service works

Calendario de desbloqueos/vesting de un token: consulta dos fuentes (DropsTab y Tokenomist) para el proximo evento de liberacion de tokens.

## Output

Returns the next token unlock or vesting event for the requested project, aggregated from DropsTab and Tokenomist, including details such as unlock date, token amount to be released, and event classification. Data from both sources is combined to give a more complete picture.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "Nombre del token o proyecto, ej: arbitrum, hyperliquid, ondo"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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-vesting-calendar-lookup-d2a48542/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jarvis-x402.com](https://www.zero.xyz/host/api.jarvis-x402.com/llms.txt)
