# PayWeave Mail – List Inbox Messages

> PayWeave Mail – List Inbox Messages is a paid API for AI agents from mail.payweave.services, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Retrieves a paginated list of messages in a disposable email inbox identified by a slug, returning metadata like sender, subject, timestamp, and message size.

## Facts

- Endpoint: GET https://mail.payweave.services/inboxes/%7Bslug%7D/messages
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-mail-list-inbox-messages-d303031c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p0CPLOXtlUPKLzmwFk6fs

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-list-inbox-messages-d303031c
```

Example prompt: Check the PayWeave Mail inbox called 'agent-verify-42' and list all the messages that have arrived — I need to see what emails came in, including who sent them and their subjects.

## When to prefer this

Use this endpoint when an AI agent needs to poll or check a disposable/temporary email inbox for incoming messages — especially in automated workflows where an agent creates a throwaway email address, triggers a signup or verification flow elsewhere, and then needs to list received emails to extract a confirmation link or code. Prefer this over persistent email providers when privacy, disposability, and pay-per-use micropayment pricing are priorities.

## Known failure modes

- Unknown or expired inbox slug returns 404 not found
- Missing or invalid x402 payment header returns 402 payment required
- Rate limit exceeded returns 429
- Malformed slug format returns 400 bad request
- Empty inbox returns 200 with empty messages array and null cursor

## How this service works

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

## Output

Returns a JSON object with a 'messages' array (each item containing id, from, subject, received_at, and size fields) and a nullable 'cursor' string for paginating through additional messages.

## 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": [
      "messages",
      "cursor"
     ],
     "properties": {
      "cursor": {
       "type": [
        "string",
        "null"
       ]
      },
      "messages": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "id",
         "from",
         "from_name",
         "subject",
         "received_at",
         "size"
        ],
        "properties": {
         "id": {
          "type": "string"
         },
         "from": {
          "type": [
           "string",
           "null"
          ]
         },
         "size": {
          "type": "integer",
          "minimum": 0
         },
         "subject": {
          "type": [
           "string",
           "null"
          ]
         },
         "from_name": {
          "type": [
           "string",
           "null"
          ],
          "description": "Sender's display name from the From header. Null when the header carries a bare address."
         },
         "received_at": {
          "type": "string"
         }
        },
        "additionalProperties": false
       }
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-mail-list-inbox-messages-d303031c/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)
