# UnlockPressure Console – Upcoming Token Unlock Sell-Pressure Feed

> UnlockPressure Console – Upcoming Token Unlock Sell-Pressure Feed is a paid API for AI agents from unlockpressure.pricepilot402-arya.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns source-backed, risk-scored upcoming token unlock events within a configurable forward-looking window, filtered by minimum sell-pressure risk score.

## Facts

- Endpoint: GET https://unlockpressure.pricepilot402-arya.workers.dev/v1/unlocks/upcoming
- 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/unlockpressure-console-upcoming-token-unlock-sell-pressure-feed-003dbf03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__MC5ljRloY_UeiWAMtP1N

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 unlockpressure-console-upcoming-token-unlock-sell-pressure-feed-003dbf03
```

Example prompt: Pull all upcoming token unlock events with a sell-pressure risk score of at least 70 over the next 30 days and tell me which tokens are flagged as high risk.

## When to prefer this

Choose this endpoint when you need structured, risk-scored intelligence on upcoming token unlock events for trading decisions, portfolio risk management, or market monitoring. It is the right choice over generic on-chain data APIs when you specifically want pre-modeled sell-pressure risk scores with source-backed evidence rather than raw vesting schedule data. Best suited for agents that need actionable, filterable unlock risk signals without building their own scoring model.

## Known failure modes

- Invalid 'days' value outside 1–365 range returns a validation error
- Invalid 'minRisk' value outside 0–100 range returns a validation error
- Payment failure or missing x402 Base USDC payment returns 402 Payment Required
- No unlock events matching the filter criteria returns an empty unlocks array
- Service unavailability or upstream data source outage returns a 5xx error

## How this service works

Source-backed token unlock sell-pressure intelligence, paid per call with x402 on Base USDC.

## Output

A JSON array of upcoming token unlock events, each containing the token symbol, a unique unlock event ID, a numeric risk score (0–100), a categorical risk level (e.g. 'high'), and an evidence array with source-backed supporting data. The response also echoes back the requested days window and minRisk filter.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "days": {
       "type": "integer",
       "default": 90,
       "maximum": 365,
       "minimum": 1,
       "description": "Forward-looking unlock window in days."
      },
      "minRisk": {
       "type": "integer",
       "default": 0,
       "maximum": 100,
       "minimum": 0,
       "description": "Minimum modeled unlock pressure risk score to include."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "required": [
      "days",
      "minRisk",
      "unlocks"
     ],
     "properties": {
      "days": {
       "type": "integer"
      },
      "minRisk": {
       "type": "integer"
      },
      "unlocks": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "token",
         "unlock_event_id",
         "risk_score",
         "risk_level"
        ],
        "properties": {
         "token": {
          "type": "string"
         },
         "evidence": {
          "type": "array",
          "items": {
           "type": "object",
           "additionalProperties": true
          }
         },
         "risk_level": {
          "type": "string"
         },
         "risk_score": {
          "type": "number"
         },
         "unlock_event_id": {
          "type": "string"
         }
        },
        "additionalProperties": true
       }
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "days": 30,
  "minRisk": 70,
  "unlocks": [
   {
    "token": "ARB",
    "evidence": [],
    "risk_level": "high",
    "risk_score": 82,
    "unlock_event_id": "unlock_arb_2026_08"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/unlockpressure-console-upcoming-token-unlock-sell-pressure-feed-003dbf03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from unlockpressure.pricepilot402-arya.workers.dev](https://www.zero.xyz/host/unlockpressure.pricepilot402-arya.workers.dev/llms.txt)
