# CuseTheJuice Mailbox Quota Snapshot

> CuseTheJuice Mailbox Quota Snapshot 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).

Returns a snapshot of the mailbox storage quota (used/total) for an authenticated CuseTheJuice mailbox account.

## Facts

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

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

Example prompt: Check the storage quota for my CuseTheJuice mailbox — my email is alice@cusethejuice.com, username alice, password mySecret123.

## When to prefer this

Use this endpoint when you need to programmatically check storage usage for a specific CuseTheJuice mailbox — for example, to monitor whether a mailbox is nearing its quota limit, to trigger cleanup workflows, or to audit usage across accounts. Prefer this over manual login flows when automating quota monitoring via AI agents with x402 micropayment support.

## Known failure modes

- Invalid credentials (wrong password or username) returns 401/403
- Mailbox not found returns 404
- Missing required fields returns 400 validation error
- Payment not provided or insufficient returns 402 with x402 payment details
- Rate limiting or server error returns 5xx

## How this service works

POST machine request for mailbox quota snapshot

## Output

A quota snapshot object indicating how much storage the mailbox has used versus its total allocated quota, returned as structured JSON.

## Request schema (JSON Schema)

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

## More

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