UPUnlockPressure

Token unlock risk API for agents and traders

Source-backed 90-day token unlock pressure for trading, research, and agent portfolio risk checks.

Phase 1Cloudflare Worker API with free scanner routes and paid x402 risk routes.
Best first purchase`POST /v1/token/risk-summary` costs $0.25 and returns the token-level 90-day unlock pressure summary after x402 settlement.
What buyers get90-day unlock window, top source-backed events, risk score, confidence, evidence links, and next unlock pressure.
Operational stateThe route is live behind x402 and remains fail-closed when payment or facilitator configuration is incomplete.
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: "SXT", 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":"SXT","lookbackDays":90}'