# HyperCLI Account Top-Up

> HyperCLI Account Top-Up is a paid API for AI agents from api.hypercli.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Credits a HyperCLI account balance with a specified USD amount paid via crypto (x402), enabling subsequent AI model API calls.

## Facts

- Endpoint: POST https://api.hypercli.com/api/x402/top_up
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hypercli-account-top-up-1868e5fe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LsNTheMhOVhgCj9doLjzx

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 hypercli-account-top-up-1868e5fe -d '<json body>'
```

Example prompt: Top up my HyperCLI account balance by $5 so I can start making AI model calls — my user ID is 'a3f2c1d0-8b7e-4f5a-9c2d-1e0f3b6a7d8e'.

## When to prefer this

Use this endpoint when an agent needs to pre-fund a HyperCLI account before making AI model calls (text-to-image, text-to-video, audio-to-text, etc.) or when an account balance is exhausted. Prefer this over subscription endpoints when flexible, one-off credit top-ups are needed rather than recurring plan billing.

## Known failure modes

- Amount below $0.01 minimum — validation error
- Invalid or malformed user_id UUID — 400 bad request
- Crypto payment insufficient or failed — payment not confirmed
- x402 payment protocol handshake failure — 402 response requiring payment
- Network timeout during transaction — indeterminate state, retry risk

## How this service works

Top up account balance with crypto payment

## Output

A JSON object confirming the deposit, including the credited amount, the associated wallet address, a transaction ID, the user ID (auto-created if not provided), and a success message.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "number",
   "minimum": 0.01,
   "description": "Top-up amount in USD"
  },
  "user_id": {
   "type": "string",
   "description": "User UUID (optional — omit to auto-create from wallet)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "amount": 0,
  "wallet": "example",
  "message": "example",
  "user_id": "example",
  "transaction_id": "example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hypercli-account-top-up-1868e5fe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hypercli.com](https://www.zero.xyz/host/api.hypercli.com/llms.txt)
