UPUnlockPressure
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 shown12
Largest notional$699.3M
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

tokenunlock datenotional% circulatingconfidencesourceaction
MMT
Momentum
2026-07-04 $756,243 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
ACS
Access Protocol
2026-07-04 $35,605 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
DEVVE
DevvE
2026-07-04 $9,770 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
OPN
Opinion
2026-07-05 $2.1M unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
AURORA
Aurora
2026-07-05 $136,070 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
CXT
Covalent X Token
2026-07-05 $52,994 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
ACE
Fusionist
2026-07-05 $32,375 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
CYPR
Cypher
2026-07-05 $2,942 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
FORT
Forta
2026-07-05 $591 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
DCK
DexCheck AI
2026-07-05 $395 unknown medium (60) tokenomist.ai event
Buy token-level 90-day unlock risk summary - $0.25
HYPE
Hyperliquid
2026-07-06 $699.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 MMT.

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