Risk checks for autonomous agents
Verify prompts and actions before execution. Pay per request with x402 on Base.
How it works
Send request
Submit a prompt or proposed action.
Pay $0.01 USDC
Settle via x402 on Base Mainnet.
Receive verdict
Branch on a machine-readable result.
Example response
{
"verdict": "block",
"riskScore": 0.95,
"confidence": 1,
"recommendedAction": "block"
}What AegisAI checks
- Prompt injection
- Contradictions
- Unsupported claims
- Source availability
Pricing — Production
$0.01 USDC per successful verification
Base Mainnet. Payments are real USDC. A settled payment is non-refundable after a successful verification response, except for duplicate settlement or payment accepted without delivery. Results are risk assessments, not guarantees.
Privacy & limitations
- Raw content is not stored in AegisAI audit storage.
- Input is sent to Cloudflare Workers AI for classification.
- Do not submit secrets, personal data, private keys, or payment headers.
- Risk assessment, not a guarantee of factual accuracy.
API quick start
Discover capabilities, send the JSON request without payment, validate the returned PAYMENT-REQUIRED terms, then resend the same body with a newly signed PAYMENT-SIGNATURE. Keep signing keys on the client.
POST https://aegis-api-mainnet.kadopi.workers.dev/v1/verify
Content-Type: application/json
{
"content": "Review this proposed agent action.",
"requestedChecks": ["prompt_injection", "contradiction"]
}Only proceed is an execution candidate. Treat proceed_with_caution as requiring added verification, and stop on block or undetermined.