Overview
x402-Email Spec v0.1 verifier (paid lane). Validates a sender address, accountability bond, and x402 payment header from an inbound email and returns a routing recommendation (inbox | review | spam). Same input as the free public endpoint at /api/x402/email/verify; this lane adds a signed _x402 receipt for bazaar callers. Live on Base mainnet.
Protocol
x402 (POST)
Price
$0.01
Payment Asset
USD Coin
Payment Network
Base
Category
uncategorized
Provider
theloopbreaker
Indexed
2026-05-11 02:54:36
Health
Status
healthy
Latency (p50)
179ms
Uptime (30d)
100.0%
Reliability Score
92/100
Last Checked
2026-05-11 07:02:30
Last Healthy
2026-05-11 07:02:30
Consecutive Failures
0
Output Schema
{
"input": {
"bodySchema": {
"properties": {
"from": {
"description": "Sender wallet address (0x...) or VNS name",
"type": "string"
},
"messageId": {
"description": "Optional inbound email Message-ID",
"type": "string"
},
"paymentTx": {
"description": "Optional x402 payment tx hash",
"type": "string"
}
},
"type": "object"
},
"discoverable": true,
"method": "POST",
"type": "http"
},
"output": {
"properties": {
"bond": {
"type": "object"
},
"claimUrl": {
"type": "string"
},
"payment": {
"type": "object"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"recommendation": {
"enum": [
"inbox",
"review",
"spam"
],
"type": "string"
},
"sender": {
"type": "object"
},
"specUrl": {
"type": "string"
},
"specVersion": {
"type": "string"
},
"tookMs": {
"type": "number"
},
"verified": {
"type": "boolean"
}
},
"type": "object"
}
}