SentinelSENTINEL Docs

Sentinel Documentation

Enterprise audit & compliance for x402 payments

Sentinel is the audit and compliance layer for x402 payments. AI agents spend real money autonomously — Sentinel intercepts every payment, enforces budget limits, and logs a complete audit trail. One npm install. One line of code. Full visibility.

Before & After

Plain x402

const response = await fetchWithPayment(
  "https://api.example.com/paid"
);

With Sentinel

const secureFetch = wrapWithSentinel(
  fetchWithPayment, {
    agentId: "researcher-01",
    budget: standardPolicy(),
  }
);

Same API. Budget enforcement + audit trail included.