UPUnlockPressure
Source-backed unlock pressure

Top unlock pressure this week

Current source-backed unlock events where timing, size, float share, and confidence make the $0.25 token risk summary a natural next call.

Events shown12
Largest notionalunknown
Paid routePOST /v1/token/risk-summary
Price$0.25

Why this page exists

Best for agents asking what needs attention before this week closes. 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

tokenunlock datenotional% circulatingconfidencesourceaction
SUI
Sui
2026-07-31 unknown 0.57% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
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
SUI
Sui
2026-11-30 unknown 0.50% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
SUI
Sui
2026-12-31 unknown 0.50% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
SUI
Sui
2027-01-31 unknown 0.49% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
SUI
Sui
2027-02-28 unknown 0.47% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
SUI
Sui
2027-03-31 unknown 0.46% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
SUI
Sui
2027-04-30 unknown 0.46% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
SUI
Sui
2027-05-31 unknown 0.41% high (80) www.sui.io event
Buy token-level 90-day unlock risk summary - $0.25
SUI
Sui
2027-06-30 unknown 0.41% 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}'