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 notional$699.3M
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
HYPE
Hyperliquid
2026-07-06 $699.3M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
SXT
Space and Time
2026-07-08 $615,250 3.13% medium (60) www.coingecko.com event
Buy token-level 90-day unlock risk summary - $0.25
ENA
Ethena
2026-07-05 $13.3M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
LINEA
Linea
2026-07-10 $2.7M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
IO
io.net
2026-07-11 $2.4M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
OPN
Opinion
2026-07-05 $2.1M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
MOVE
Movement
2026-07-09 $2M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
BABY
Babylon
2026-07-10 $1.9M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
MMT
Momentum
2026-07-04 $756,243 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
ME
Magic Eden
2026-07-10 $709,025 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
BB
BounceBit
2026-07-07 $611,377 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
IOTA
IOTA
2026-07-08 $483,827 unknown medium (60) tokenomist.ai 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 HYPE.

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: "HYPE", 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":"HYPE","lookbackDays":90}'