Source-backed unlock pressure
Next major token unlocks
Upcoming token unlock events with source links, confidence, notional size, and the exact x402 route to buy deeper risk context.
Events shown3
Largest notionalunknown
Paid routePOST /v1/token/risk-summary
Price$0.25
Why this page exists
Best for trade pre-checks where the next dated event is the trigger. The free preview shows event facts; the paid call returns the 90-day window, top events, max risk, confidence, evidence links, assumptions, and next unlock pressure.
Current event-led preview
| token | unlock date | notional | % circulating | confidence | source | action |
|---|---|---|---|---|---|---|
| SUI Sui |
2026-08-31 | unknown | 0.55% | high (80) | www.sui.io |
event Buy token-level 90-day unlock risk summary - $0.25 |
| SUI Sui |
2026-09-30 | unknown | 0.54% | high (80) | www.sui.io |
event Buy token-level 90-day unlock risk summary - $0.25 |
| SUI Sui |
2026-10-31 | unknown | 0.53% | high (80) | www.sui.io |
event Buy token-level 90-day unlock risk summary - $0.25 |
Buy the first useful summary
Use this when an agent needs a compact source-backed answer before trading, researching, or rebalancing SUI.
import { wrapFetchWithPayment, x402HTTPClient } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { ExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";
const signer = privateKeyToAccount(process.env.EVM_PRIVATE_KEY);
const client = new x402Client();
client.register("eip155:*", new ExactEvmScheme(signer));
const fetchWithPayment = wrapFetchWithPayment(fetch, client);
const httpClient = new x402HTTPClient(client);
const response = await fetchWithPayment("https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({ token: "SUI", lookbackDays: 90 })
});
const paid = await httpClient.processResponse(response);
console.log(paid.body);
curl -i "https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary" \
-H "content-type: application/json" \
--data '{"token":"SUI","lookbackDays":90}'