# UnlockPressure Token Risk Summary

> UnlockPressure Token Risk Summary is a paid API for AI agents from unlockpressure.pricepilot402-arya.workers.dev, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16).

Returns a scored sell-pressure risk summary for a crypto token based on upcoming unlock events within a configurable forward window.

## Facts

- Endpoint: POST https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/unlockpressure-token-risk-summary-22858129
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aMoUFf8oT34JeeE3XFvPE

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-token-risk-summary-22858129 -d '<json body>'
```

Example prompt: Can you pull the unlock sell-pressure risk summary for ARB over the next 90 days and tell me if there are any high-risk events coming up?

## When to prefer this

Choose this endpoint when you need a structured, scored risk assessment of upcoming token unlock events that could drive sell-pressure, especially when you need confidence ratings and per-event risk scores rather than raw schedule data. It is ideal for pre-investment due diligence, portfolio risk monitoring, or DAO treasury decisions where quantified unlock risk intelligence is needed quickly and on a per-call paid basis via x402.

## Known failure modes

- Token symbol not recognized — returns empty events array or error
- lookbackDays out of range (below 1 or above 365) — validation error
- No unlock events found for token in the specified window — returns event_count: 0
- Payment failure via x402 — 402 response if USDC payment on Base is not completed
- Service unavailable on Cloudflare Workers — 5xx error

## How this service works

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

## Output

Returns a JSON object containing a list of upcoming unlock events for the token, each with a risk score (0-100), risk level (e.g. high/medium/low), confidence rating, an unlock event ID, and a list of evidence sources. Also includes aggregate fields: total event count, the forward window in days, maximum risk score, average risk score, and an overall risk level classification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "type": "string",
   "minLength": 1,
   "description": "Token symbol to summarize."
  },
  "lookbackDays": {
   "type": "integer",
   "default": 90,
   "maximum": 365,
   "minimum": 1,
   "description": "Forward unlock pressure window in days; this Phase 1-compatible field name does not request historical lookback data."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "token": "ARB",
  "events": [
   {
    "evidence": [],
    "confidence": "medium",
    "risk_level": "high",
    "risk_score": 82,
    "unlock_event_id": "unlock_arb_2026_08"
   }
  ],
  "event_count": 3,
  "window_days": 90,
  "max_risk_score": 82,
  "average_risk_score": 68,
  "overall_risk_level": "high"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/unlockpressure-token-risk-summary-22858129/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)
