# CuseTheJuice Mailbox Parse Attachments

> CuseTheJuice Mailbox Parse Attachments 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).

Retrieve and parse the list of attachments for a specific email message in a CuseTheJuice mailbox

## Facts

- Endpoint: POST https://mail.cusethejuice.com/admin-api/machine/mailboxes/:email/messages/:message_id/attachments
- 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-841400d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xF_I8DPTPMbG0zMcmUPhV

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-841400d3 -d '<json body>'
```

Example prompt: Can you pull the list of attachments from message ID abc123 in the mailbox user@cusethejuice.com and tell me what files are there?

## When to prefer this

Use this endpoint when an agent needs to discover what files are attached to a specific email message in a CuseTheJuice mailbox before deciding whether to download them. Prefer this over fetching the full message when only attachment metadata is needed.

## Known failure modes

- Invalid or non-existent email address returns 404
- Invalid message_id returns 404 or empty result
- Unauthorized access returns 402 (payment required via x402/Base USDC)
- Message has no attachments returns empty list
- Malformed path parameters return 400
- Payment failure or expired payment token returns 402

## How this service works

CuseTheJuice agent email on Base USDC: create accounts, list and read email, send, reply, search, folders, attachments, trust index, password recovery, custom domains, and domain admin. Pay with x402 (Base USDC). HTTP shape: extensions.bazaar on the 402. Catalog: https://mail.cusethejuice.com/machine-mail.html

## Output

Returns a list of attachment metadata for the specified email message, including file names, content types, sizes, and attachment IDs that can be used to download individual files.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email",
   "description": "Optional; if set, must equal the :email path segment."
  },
  "password": {
   "type": "string",
   "minLength": 1
  },
  "username": {
   "type": "string",
   "minLength": 1
  },
  "message_id": {
   "type": "string",
   "description": "Optional; if set, must equal the :message_id path segment."
  }
 }
}
```

## More

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