UPUnlockPressure
Source-backed unlock pressure

Highest 90-day unlock pressure

A market-led preview of the next 90 days, sorted so buyers see concrete pressure before buying the token-level summary.

Events shown12
Largest notional$699.3M
Paid routePOST /v1/token/risk-summary
Price$0.25

Why this page exists

Best for research and portfolio checks before buying or holding a token. 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
BARD
Lombard
2026-09-18 $62.7M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
ZRO
LayerZero
2026-07-20 $23.1M 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
CONX
Connex
2026-07-15 $22.1M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
H
Humanity
2026-07-25 $18.3M unknown medium (60) tokenomist.ai 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
AVAX
Avalanche
2026-08-10 $11.5M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
HUMA
Huma Finance
2026-08-26 $10.4M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
KAITO
KAITO
2026-07-20 $10.1M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
DBR
deBridge
2026-07-17 $9.6M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
MBG
MBG By Multibank Group
2026-07-22 $8.3M 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}'