verified until 2026-07-26
API-first email inboxes for AI agents. Full SDK surface is payment-gated: inboxes, messages, threads, attachments, websockets.
Pay from $2.00 in USDC on Avalanche / Base / Polygon / Solana, settled onchain via the x402 protocol, no signup, no API key needed.
ASSESSMENT
updated 2h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- 100%
- uptime 7d
- 100%
- uptime 30d
- 100%
- uptime 90d
- 100%
- response p95
- 1234ms
- avg response
- 1231ms
- total checks
- 7,164
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
price $2.00 (p92 in AI)
- price (min)
- $2.00
- category percentile (min)
- p92 in AI
- endpoints / prices
- 1 / 1
- model
- flat
- stability
- 100%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
traction $49.51 30d · 18 buyers
- volume 30d
- $49.51
- buyers 30d
- 18
- settlements 30d
- 370
- last settlement
- 2026-07-18
- top buyer share
- 45% of 30d volume
- trend 7d vs 30d
- 0.97x the 30d daily rate
- networks
- eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d
Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.
Top buyer share is a concentration signal, not part of the ranking score.
WHAT IT DOES
ai-derivedAgentMail provides an API for creating and managing email inboxes, pods, drafts, domains, and webhooks.
- category
- email-api
- in
- body
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| POST | /v0/inboxes | Create an inbox | $2.00 | Avalanche/Base/Polygon/Solana | USDC |
REQUEST / RESPONSE EXAMPLE
An unpaid request to POST /v0/inboxes returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i -X POST 'https://x402.api.agentmail.to/v0/inboxes'
// 402 response (captured by monitor) · 1 payload · click to expand
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x6e3184C204e596dED89E8A5693B602097F4Ab687",
"amount": "2000000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"feePayer": "2wKupLR9q6wXYppw8Gr2NvWxKBUqm4PPJKkQfoxHDBg4"
},
"payTo": "7r4e5dwNS68MDaxbw7N8jbzHq7RCMBp9z6smHFH4NXWw",
"amount": "2000000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
},
{
"asset": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x6e3184C204e596dED89E8A5693B602097F4Ab687",
"amount": "2000000",
"scheme": "exact",
"network": "eip155:43114",
"maxTimeoutSeconds": 300
},
{
"asset": "0x74b7f16337b8972027f6196a17a631ac6de26d22",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x6e3184C204e596dED89E8A5693B602097F4Ab687",
"amount": "2000000",
"scheme": "exact",
"network": "eip155:196",
"maxTimeoutSeconds": 300
},
{
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x6e3184C204e596dED89E8A5693B602097F4Ab687",
"amount": "2000000",
"scheme": "exact",
"network": "eip155:137",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://api.paysponge.com/v0/inboxes",
"mimeType": "application/json",
"description": "Service: AgentMail API (https://api.paysponge.com/v0/inboxes)"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"domain": "<domain>",
"username": "<username>",
"client_id": "<client_id>",
"display_name": "<display_name>"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"type": "object",
"title": "CreateInboxRequest",
"properties": {
"domain": {
"type": "string",
"description": "Domain of address. Must be verified domain. Defaults to `agentmail.to`."
},
"username": {
"type": "string",
"description": "Username of address. Randomly generated if not specified."
},
"client_id": {
"type": "string",
"title": "ClientId",
"description": "Client ID of inbox."
},
"display_name": {
"type": "string",
"title": "DisplayName",
"description": "Display name: `Display Name <[email protected]>`."
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string",
"const": "json"
},
"example": {
"type": "object",
"additionalProperties": true
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
}
},
"x402Version": 2
}
] UPTIME
RECENT CHECKS
OVER TIME
All charts share the 24h window selected here. Every series is also served as JSON at /api/v1/services/agentmail/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).
COMPLIANCE
11/11 checks pass · grade A- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
EMBED THIS BADGE
<a href="https://x402-list.com/services/agentmail?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/agentmail.svg" alt="AgentMail listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/agentmail?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/agentmail?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/agentmail.svg?data=uptime" alt="AgentMail uptime on x402-list" height="28"> </a>