# CuseTheJuice Mailbox Account Recovery Complete

> CuseTheJuice Mailbox Account Recovery Complete 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).

Completes a mailbox account recovery by accepting a recovery code and new password to reset access to a CuseTheJuice email account

## Facts

- Endpoint: POST https://mail.cusethejuice.com/admin-api/machine/request/account-recovery/complete
- 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-d17b08de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ky96u5-IJk-SMbeDckbyN

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

Example prompt: Complete the account recovery for my CuseTheJuice mailbox — my email is user@cusethejuice.com, username is johndoe, recovery code is REC-ABC123, and I want my new password to be MyNewSecurePass!9.

## When to prefer this

Use this endpoint when a mailbox user has already initiated an account recovery (obtained a recovery_code) and needs to finalize the process by setting a new password. This is the completion step of a two-step recovery flow, not the initiation step. Choose this when the agent has both the recovery_code and desired new_password ready to submit together.

## Known failure modes

- Invalid or expired recovery_code returns an error indicating the code is not recognized or has timed out
- Missing required fields (email, username, new_password, recovery_code) results in a validation error
- Mismatched email/username combination returns an authentication failure
- New password failing minimum length or complexity requirements returns a validation error
- Account not in recovery state returns an error indicating no pending recovery exists
- Payment failure via x402/Base USDC results in a 402 response before processing

## 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 the account recovery has been completed, indicating that the mailbox password has been successfully reset and access has been restored using the provided recovery code and new password.

## Request schema (JSON Schema)

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

## More

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