System Status
Operational
Base Mainnet Connected
USDC Reserve
Loading...
Available for refunds
Total Coverage
$0
Active policies
Total Policies
0
Since inception
Claims Paid
$0
Via zkEngine proofs
Recent Policies
No policies yet
Recent Claims
No claims yet
How It Works

1. Agents Buy Insurance
Agents pay a premium (1% of coverage amount) via x402 protocol to insure against API failures and service downtime. Payments are verified on-chain.

2. zkEngine Generates Proofs
When an agent submits a claim, zkEngine analyzes the HTTP response and generates a zero-knowledge proof. The proof cryptographically certifies that failure conditions were met (e.g., status >= 500, empty response) without exposing the actual response dataβ€”like proving you know a password without revealing the password itself.

3. Automatic USDC Refunds
If the proof verifies, USDC refunds are automatically issued on Base Mainnet. All proofs are publicly auditable.

# Failure Detection Logic (proven in zero-knowledge) def detect_failure(http_status, body_length): if http_status >= 500: # Server error return True if body_length == 0: # Empty response return True return False