90-day report preview
MATIC 90-day unlock risk
Matic Token public preview with source links, upcoming unlock context, and a paid token-level 90-day risk summary for the next decision step.
Preview events0
Source links0
Largest unlocknone
Last updatedgenerated
Free Preview
No source-backed unlock events are available for this token yet.
Sources
No public source links are available yet.
Paid 90-Day Summary
Buy token-level 90-day unlock risk summary - $0.25
Paid output includes the 90-day unlock window, top source-backed events, max risk score, confidence, event evidence, and next unlock pressure.
POST /v1/token/risk-summary$0.25const body = { token: "MATIC", lookbackDays: 90 };
const challenge = await fetch("https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify(body)
});
if (challenge.status !== 402) throw new Error("Expected x402 challenge");
const paymentRequired = challenge.headers.get("PAYMENT-REQUIRED");
const payment = await yourX402Client.createPayment(paymentRequired);
const paid = await fetch("https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary", {
method: "POST",
headers: {
"content-type": "application/json",
"PAYMENT-SIGNATURE": payment,
"Idempotency-Key": "MATIC-90-day-risk-summary"
},
body: JSON.stringify(body)
});
const report = await paid.json();
curl -i "https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary" \
-H "content-type: application/json" \
--data '{"token":"MATIC","lookbackDays":90}'
# Expect HTTP 402 first. Read PAYMENT-REQUIRED, create the x402 proof, then retry:
curl -i "https://unlockpressure.pricepilot402-arya.workers.dev/v1/token/risk-summary" \
-H "content-type: application/json" \
-H "PAYMENT-SIGNATURE: <x402-proof>" \
-H "Idempotency-Key: MATIC-90-day-risk-summary" \
--data '{"token":"MATIC","lookbackDays":90}'