# UnlockPressure Console – Token Unlock Risk Scoring

> UnlockPressure Console – Token Unlock Risk Scoring is a paid API for AI agents from unlockpressure.pricepilot402-arya.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns a risk score and risk level for a specific token unlock event, indicating likely sell pressure based on source-backed evidence.

## Facts

- Endpoint: POST https://unlockpressure.pricepilot402-arya.workers.dev/v1/unlock-risk
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/unlockpressure-console-token-unlock-risk-scoring-9284e7c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V30X4c-JFy-K7AnwtkMLi

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-token-unlock-risk-scoring-9284e7c9 -d '<json body>'
```

Example prompt: What's the unlock risk score for ARB's August 2026 unlock event (ID: unlock_arb_2026_08)? Include the evidence records so I can see what's driving the rating.

## When to prefer this

Choose this endpoint when you need a structured, scored risk assessment for a specific token unlock event and want source-backed evidence rather than raw on-chain data. Ideal for DeFi traders, portfolio risk systems, and automated agents that need a single risk verdict (score + level) for a known unlock event ID rather than general market sentiment or price prediction.

## Known failure modes

- Invalid or unknown unlock_event_id returns an error or empty result
- Missing required fields (token or unlock_event_id) causes a 400 validation error
- Payment failure via x402/Base USDC blocks the response with a 402 status
- Network timeout on the workers.dev edge function during peak load
- Evidence array may be empty if no source data is available for the event

## 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 the token symbol, the unlock event ID, a numeric risk score (0–100), a risk level label (e.g. 'high', 'medium', 'low'), and optionally an array of evidence records that explain the sources and signals behind the risk assessment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "type": "string",
   "minLength": 1,
   "description": "Token symbol for the unlock event."
  },
  "includeEvidence": {
   "type": "boolean",
   "default": true,
   "description": "Include evidence records in the paid response."
  },
  "unlock_event_id": {
   "type": "string",
   "minLength": 1,
   "description": "Unlock event identifier returned by the scanner."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "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-token-unlock-risk-scoring-9284e7c9/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)
