Token unlock page
UNCX unlock pressure
UNCX Network Security Token Vesting unlock events with source confidence, allocation buckets, and paid risk API entry points.
Unlock events0
Token confidencemedium
Next unlocknone
Chaineip155:1
Unlock Events
No unlock events are available for this token yet.
Paid 90-Day Summary
Buy token-level 90-day unlock risk summary - $0.25
Paid output includes the 90-day unlock window, top source-backed events, max risk score, confidence, event evidence, and next unlock pressure.
POST /v1/token/risk-summary$0.25const body = { token: "UNCX", lookbackDays: 90 };
const challenge = await fetch("https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify(body)
});
if (challenge.status !== 402) throw new Error("Expected x402 challenge");
const paymentRequired = challenge.headers.get("PAYMENT-REQUIRED");
const payment = await yourX402Client.createPayment(paymentRequired);
const paid = await fetch("https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary", {
method: "POST",
headers: {
"content-type": "application/json",
"PAYMENT-SIGNATURE": payment,
"Idempotency-Key": "UNCX-90-day-risk-summary"
},
body: JSON.stringify(body)
});
const report = await paid.json();
curl -i "https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary" \
-H "content-type: application/json" \
--data '{"token":"UNCX","lookbackDays":90}'
# Expect HTTP 402 first. Read PAYMENT-REQUIRED, create the x402 proof, then retry:
curl -i "https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary" \
-H "content-type: application/json" \
-H "PAYMENT-SIGNATURE: <x402-proof>" \
-H "Idempotency-Key: UNCX-90-day-risk-summary" \
--data '{"token":"UNCX","lookbackDays":90}'
Paid Risk API
POST /v1/token/risk-summary$0.25{
"token": "UNCX",
"lookbackDays": 90
}