# CuseTheJuice Mailbox Create Dovecot Folder

> CuseTheJuice Mailbox Create Dovecot Folder 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).

Creates a new Dovecot Maildir folder (subfolder/label) inside an existing CuseTheJuice mailbox account

## Facts

- Endpoint: POST https://mail.cusethejuice.com/admin-api/machine/request/folder/create
- 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-aeb64fa8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ngiNWjfvkYR4VD6glz1lG

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

Example prompt: In my CuseTheJuice mailbox at user@mail.cusethejuice.com (username: myuser, password: mypassword), create a new folder called 'Newsletters' to help me organize my emails.

## When to prefer this

Use this endpoint when you need to programmatically create a new IMAP/Maildir folder inside a CuseTheJuice mailbox — for example, to set up organizational folders like Newsletters, Work, or Archives before routing messages into them. Prefer this over delete or move endpoints when the goal is folder provisioning rather than message management.

## Known failure modes

- Invalid credentials (wrong email, username, or password) — authentication failure
- Folder name already exists — duplicate folder conflict
- Attempting to create a reserved system folder name — rejected
- Malformed email format — validation error
- Missing required fields (email, password, username, folder_name) — 400 bad request
- Payment failure via x402 — 402 payment required or insufficient funds
- Folder name contains invalid characters for Maildir — rejected

## How this service works

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

## Output

A confirmation response indicating that the named Dovecot Maildir folder was successfully created within the specified mailbox account. May return the new folder name or a success status. Payment is processed via x402 (Base USDC) at $0.01 per call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email"
  },
  "password": {
   "type": "string",
   "minLength": 1
  },
  "username": {
   "type": "string",
   "minLength": 1
  },
  "folder_name": {
   "type": "string",
   "minLength": 1
  }
 }
}
```

## More

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