# CuseTheJuice Mail Forward Message

> CuseTheJuice Mail Forward Message is a paid API for AI agents from mail.cusethejuice.com, paid per call via x402, $0.010000/call, status down (last checked 2026-09-15).

Forwards an existing mailbox message to specified recipients via SMTP, with optional custom body text and subject override

## Facts

- Endpoint: POST https://mail.cusethejuice.com/admin-api/machine/request/forward
- Price: $0.010000/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mail-cusethejuice-com-3e6de6dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OteLDHgppoHSrbyp02Npg

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 mail-cusethejuice-com-3e6de6dd -d '<json body>'
```

Example prompt: Forward message ID abc123 from my CuseTheJuice mailbox (user@mail.cusethejuice.com, username 'alice', password 'secret99') to bob@example.com and cc carol@example.com, with a note at the top saying 'Thought you should see this.'

## When to prefer this

Use this endpoint when an AI agent needs to forward a specific, already-received message from a CuseTheJuice mailbox to one or more recipients, optionally prepending a custom note. Prefer this over a generic send/compose endpoint when the operation is a true forward (preserving original content with Fwd: prefix) rather than composing a new message. Requires x402 payment in Base USDC per call.

## Known failure modes

- Missing required auth fields (username/password) returns 401 or 402 payment required
- No recipient specified (to/cc/bcc all empty) returns validation error
- Invalid or non-existent message_id returns 404 or error
- Payment not completed via x402/Base USDC returns 402 with payment instructions
- Invalid email format for recipient or sender returns 400
- Incorrect credentials return authentication failure

## How this service works

CuseTheJuice mailbox @ mail.cusethejuice.com — GET probe for x402 challenge (machine forward message). Real call is POST with JSON body + Payment-Signature header; schema in extensions.bazaar. https://mail.cusethejuice.com/machine-mail.html

## Output

A confirmation that the message was forwarded via SMTP to the specified recipients. Response typically indicates success or failure of the forward operation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cc": {
   "type": "string"
  },
  "to": {
   "type": "string",
   "description": "At least one of to, cc, bcc must be non-empty."
  },
  "bcc": {
   "type": "string"
  },
  "body": {
   "type": "string",
   "description": "Optional text prepended to forwarded content."
  },
  "email": {
   "type": "string",
   "format": "email"
  },
  "subject": {
   "type": "string",
   "description": "Optional; default adds Fwd: prefix from original."
  },
  "password": {
   "type": "string",
   "minLength": 1
  },
  "username": {
   "type": "string",
   "minLength": 1
  },
  "message_id": {
   "type": "string",
   "minLength": 1
  },
  "from_folder": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mail-cusethejuice-com-3e6de6dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mail.cusethejuice.com](https://www.zero.xyz/host/mail.cusethejuice.com/llms.txt)
