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
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}'