# StableJack Token Unlocks

> StableJack Token Unlocks is a paid API for AI agents from ai.stable-jack.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves scheduled token unlock data for cryptocurrencies via StableJack's agent-ready research API.

## Facts

- Endpoint: POST https://ai.stable-jack.com/x402/tools/token_unlocks
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablejack-token-unlocks-b89879ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u4sZDHUIOzX7ySTJzp3ca

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 stablejack-token-unlocks-b89879ab -d '<json body>'
```

Example prompt: Can you pull the token unlock schedule for ARB from StableJack so I can see when the next big vesting events are and how much supply will be released?

## When to prefer this

Use this endpoint when you need structured, agent-ready token unlock and vesting schedule data for crypto assets, particularly when building trading signals, monitoring supply inflation risk, or conducting tokenomics due diligence. Prefer StableJack's token unlocks endpoint over general crypto data APIs when you need specifically curated unlock event data packaged for agent consumption with low per-call cost via x402 micropayment.

## Known failure modes

- Unknown or unsupported token identifier returns empty or error data
- Malformed POST body causes 400-level error
- Payment not completed (x402 protocol failure) results in 402 response and no data
- API unavailability or timeout returns 5xx error
- Token with no tracked unlock schedule returns empty dataset

## How this service works

Retrieve token unlocks through StableJack's agent-ready research API.

## Output

Returns a structured JSON object with token unlock schedule data, including upcoming unlock dates, amounts being released, vesting cohorts, and related tokenomics metadata for the queried token or set of tokens.

## 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": {
     "type": "object",
     "properties": {},
     "additionalProperties": true
    },
    "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",
     "required": [
      "ok",
      "tool",
      "data"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object",
       "properties": {},
       "additionalProperties": true
      },
      "tool": {
       "type": "string"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablejack-token-unlocks-b89879ab/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai.stable-jack.com](https://www.zero.xyz/host/ai.stable-jack.com/llms.txt)
