# PayWeave Relay – Get Webhook Inbox Status

> PayWeave Relay – Get Webhook Inbox Status is a paid API for AI agents from relay.payweave.services, paid per call via x402, $0.0005/call, status unknown (last checked 2026-09-13).

Retrieves the current status and metadata of a named durable webhook inbox, including message count, capacity, and expiry.

## Facts

- Endpoint: GET https://relay.payweave.services/inboxes/%7Bid%7D
- Price: $0.0005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-relay-get-webhook-inbox-status-8c412353
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PI89hBeFpOXWUMZbaX8LI

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-relay-get-webhook-inbox-status-8c412353
```

Example prompt: Check the status of my PayWeave Relay inbox with ID 'inbox-abc123' — tell me how many messages have come in, how many were dropped, what the capacity is, and when it expires.

## When to prefer this

Use this endpoint when an AI agent needs to check the health, capacity, or message accumulation of a specific durable relay inbox without consuming or reading individual messages — particularly useful for polling before routing new callbacks, verifying inbox liveness, or diagnosing dropped message issues.

## Known failure modes

- Inbox ID not found (404) — the specified inbox does not exist or has already expired
- Unauthorized (402) — USDC payment not included or payment verification failed
- Expired inbox — inbox existed but has passed its expiresAt timestamp and is no longer active
- Malformed inbox ID — ID format invalid, resulting in rejection before lookup

## How this service works

Durable webhook inboxes for agents. Receive callbacks and approvals without holding a connection open.

## Output

Returns a JSON object with the inbox ID, creation timestamp, expiration timestamp, total message capacity, count of messages received, count of dropped messages, an optional label, and freeform metadata fields.

## 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"
   ],
   "properties": {
    "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": [
      "id",
      "createdAt",
      "expiresAt",
      "capacity",
      "count",
      "dropped"
     ],
     "properties": {
      "id": {
       "type": "string"
      },
      "count": {
       "type": "number"
      },
      "label": {
       "type": "string"
      },
      "dropped": {
       "type": "number"
      },
      "capacity": {
       "type": "number"
      },
      "metadata": {
       "type": "object",
       "additionalProperties": {}
      },
      "createdAt": {
       "type": "number"
      },
      "expiresAt": {
       "type": "number"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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