# PayWeave Mail – Get Inbox Status

> PayWeave Mail – Get Inbox Status is a free API for AI agents from mail.payweave.services, callable via x402, Free, status unknown (last checked 2026-09-13).

Returns the current status of a disposable email inbox by slug, including existence, address, TTL, expiry, message count, and webhook configuration.

## Facts

- Endpoint: GET https://mail.payweave.services/inboxes/%7Bslug%7D/status
- Price: Free
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-mail-get-inbox-status-255d312e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rMerg27d406IvGTxxBzIl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability payweave-mail-get-inbox-status-255d312e
```

Example prompt: Can you check the status of my PayWeave Mail disposable inbox 'agent-task-42' — I want to know if it exists, how many messages it's received, and when it expires?

## When to prefer this

Use this endpoint when you need a lightweight status check on an existing disposable inbox — for example, to poll whether messages have arrived, verify the inbox is still live before acting on it, or confirm webhook setup — without fetching full message contents.

## Known failure modes

- Inbox slug not found — exists field returns false with zeroed/null metadata
- Invalid slug format — 400 Bad Request
- Network or service unavailability — 5xx error
- Payment required if per-call pricing applies — 402 Payment Required

## How this service works

Disposable email inboxes for agents — create, receive, read, and send. Pay per call.

## Output

Returns a JSON object with: exists (boolean), slug (string), address (full email address string), ttl_days (integer), expires_at (ISO timestamp string), message_count (integer ≥ 0), and webhook_configured (boolean).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "anyOf": [
      {
       "not": {}
      },
      {
       "type": "object",
       "properties": {},
       "additionalProperties": false
      }
     ]
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "exists",
      "slug",
      "address",
      "ttl_days",
      "expires_at",
      "message_count",
      "webhook_configured"
     ],
     "properties": {
      "slug": {
       "type": "string"
      },
      "exists": {
       "type": "boolean"
      },
      "address": {
       "type": "string"
      },
      "ttl_days": {
       "type": "integer"
      },
      "expires_at": {
       "type": "string"
      },
      "message_count": {
       "type": "integer",
       "minimum": 0
      },
      "webhook_configured": {
       "type": "boolean"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-mail-get-inbox-status-255d312e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mail.payweave.services](https://www.zero.xyz/host/mail.payweave.services/llms.txt)
