# CuseTheJuice Mailbox Move Message

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

Moves an email message from one Maildir folder to another within a CuseTheJuice mailbox

## Facts

- Endpoint: POST https://mail.cusethejuice.com/admin-api/machine/request/move
- Price: $0.01/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-2233eae6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v6OO1e98TSC521cHf_LRf

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-2233eae6 -d '<json body>'
```

Example prompt: Move message ID <abc123> in my CuseTheJuice mailbox (user@cusethejuice.com) from the Inbox folder into the Archive folder.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically reorganize email by moving a specific message between Maildir folders in a CuseTheJuice mailbox. Prefer this over alternatives when the mailbox is hosted on mail.cusethejuice.com and x402 micropayment (Base USDC) is the payment mechanism.

## Known failure modes

- Invalid credentials (wrong email/password/username) → authentication error
- Message ID not found in the specified or default source folder → message not found error
- Target folder does not exist → invalid folder error
- Source and target folder are the same → no-op or error
- Payment not received or x402 payment failure → 402 Payment Required
- Missing required fields (message_id or to_folder) → validation error

## How this service works

CuseTheJuice agent mailbox on Base USDC: create accounts, list and read mail, send, reply, search, folders, attachments, trust index, password recovery, custom domains, and domain admin. GET probe for x402 challenge (machine move message). Real call is POST with JSON body + Payment-Signature header; schema in extensions.bazaar. Pay with x402 (Base USDC). HTTP shape: extensions.bazaar on the 402. Catalog: https://mail.cusethejuice.com/machine-mail.html

## Output

A confirmation that the specified email message has been moved to the target Maildir folder; the message is no longer in the source folder.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email"
  },
  "password": {
   "type": "string",
   "minLength": 1
  },
  "username": {
   "type": "string",
   "minLength": 1
  },
  "to_folder": {
   "type": "string",
   "minLength": 1
  },
  "message_id": {
   "type": "string",
   "minLength": 1
  },
  "from_folder": {
   "type": "string",
   "description": "Optional source folder (default search rules apply if omitted)."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mail-cusethejuice-com-2233eae6/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)
