Token unlock page
SXT unlock pressure
Space and Time unlock events with source confidence, allocation buckets, and paid risk API entry points.
Unlock events1
Token confidencehigh
Next unlock2026-07-08
Chaineip155:1
Unlock Events
| Date | Amount | % circ. | Bucket | Confidence |
|---|---|---|---|---|
| 2026-07-08 | 81,700,000 | 3.13% | investor | medium |
Paid 90-Day Summary
Buy token-level 90-day unlock risk summary - $0.25
Includes event context for unlock_8059a416 when it falls inside the selected window.
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: "SXT", 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": "SXT-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":"SXT","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: SXT-90-day-risk-summary" \
--data '{"token":"SXT","lookbackDays":90}'
Paid Risk API
POST /v1/token/risk-summary$0.25{
"token": "SXT",
"lookbackDays": 90
}