# APEX Runner Token Unlock Signal Feed

> APEX Runner Token Unlock Signal Feed is a paid API for AI agents from apexrunner.ai, paid per call via x402, $0.28/call, status unknown (last checked 2026-09-15).

Returns upcoming crypto token unlock events with aggregate sell-pressure risk levels to inform trading decisions

## Facts

- Endpoint: GET https://apexrunner.ai/signals/token-unlock
- Price: $0.28/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apex-runner-token-unlock-signal-feed-172a0100
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4I_AJNvxVVFAVKi0ZG4h9

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 apex-runner-token-unlock-signal-feed-172a0100
```

Example prompt: Pull the latest token unlock signal from APEX Runner and tell me which tokens are facing high or critical sell-pressure risk from upcoming unlocks, and when the biggest one hits.

## When to prefer this

Use this endpoint when an AI trading agent or analyst needs to factor token unlock events into a trading strategy, risk assessment, or position sizing decision. Especially useful before entering long positions in tokens like ARB, OP, or other vesting-heavy assets where cliff unlocks cause significant sell pressure.

## Known failure modes

- Payment not received or expired — 402 response requiring x402 payment
- No upcoming unlocks in the data window — empty upcoming_unlocks array returned
- Service temporarily unavailable — 503 or timeout
- Stale data if unlock schedule source has not refreshed — dates may lag real-time announcements

## How this service works

APEX Runner: Token Unlock Signal

## Output

A JSON object containing: an aggregate sell-pressure risk level (low/medium/high/critical), an array of upcoming token unlock events each with token ticker, ISO-8601 date, and USD unlock amount, plus the ticker of the token with the largest imminent unlock.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "coin": {
       "enum": [
        "AVAX",
        "BTC",
        "ETH",
        "LINK",
        "SOL",
        "XRP"
       ],
       "type": "string",
       "default": "BTC"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "coin": {
       "type": "string"
      },
      "note": {
       "type": "string"
      },
      "unlock_pressure": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk_level": "high",
  "upcoming_unlocks": [
   {
    "date": "2026-05-20",
    "token": "ARB",
    "amount_usd": 42000000
   }
  ],
  "highest_risk_token": "ARB"
 },
 "risk_level": "string — aggregate sell-pressure risk from upcoming unlocks: low, medium, high, or critical",
 "upcoming_unlocks": "array — each item: {token: string, date: ISO-8601 string, amount_usd: float}",
 "highest_risk_token": "string — ticker of the token with the largest imminent unlock"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apex-runner-token-unlock-signal-feed-172a0100/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apexrunner.ai](https://www.zero.xyz/host/apexrunner.ai/llms.txt)
