# CuseTheJuice Mail Account Recovery Request

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

Initiates a forgot-password flow by sending a recovery code to the registered recovery email address for a CuseTheJuice mailbox

## Facts

- Endpoint: POST https://mail.cusethejuice.com/admin-api/machine/request/account-recovery/request
- Price: $1/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-2c031170
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t9tmujEJyjeOTp4oEeyK2

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

Example prompt: I've forgotten my password for my CuseTheJuice mailbox johndoe@cusethejuice.com — username johndoe — can you kick off the account recovery flow so they email a reset code to my registered recovery address?

## When to prefer this

Use this endpoint when an AI agent or user has lost access to their CuseTheJuice mailbox and needs to initiate the forgot-password / account recovery flow; this is the first step in a two-step recovery process (followed by the complete-recovery endpoint that accepts the code and new password); prefer this over manual flows when automating mailbox management via x402-enabled agents

## Known failure modes

- Email or username not found — returns 404 or similar error if the account does not exist
- Recovery email mismatch — if recovery_email is provided but does not match the registered address, request is rejected
- Rate limiting — repeated recovery requests for the same account may be throttled
- Payment failure — x402 USDC payment on Base not completed, 402 response returned
- Missing required fields — omitting email or username results in a 400 validation error

## 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

A confirmation that a recovery code has been dispatched to the registered recovery email address on file for the specified mailbox account; the agent receives an acknowledgement response with no sensitive data exposed

## Example request

```json
{
 "email": "zero-qa@agentmail.to",
 "username": "testuser",
 "recovery_email": "zero-qa@agentmail.to"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "email": {
   "type": "string",
   "format": "email"
  },
  "username": {
   "type": "string",
   "minLength": 1
  },
  "recovery_email": {
   "type": "string",
   "description": "Optional; if set, must match the registered recovery address."
  }
 }
}
```

## More

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