# Button Money Energy Refill

> Button Money Energy Refill is a paid API for AI agents from buttonmoney.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Instantly refills a player's full energy in the Button Money game for a wallet address

## Facts

- Endpoint: POST https://buttonmoney.vercel.app/api/premium/game/energy-refill
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/button-money-energy-refill-51922566
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dFzZjUn9_9lDqOK3rSQpq

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 button-money-energy-refill-51922566 -d '<json body>'
```

Example prompt: I've run out of energy in Button Money — instantly refill my full energy bar for wallet address 0xAbc123...def456.

## When to prefer this

Use this endpoint when a player needs to immediately restore their full energy in the Button Money game and is willing to pay $0.01 USDC per refill. Ideal for automated bots or agents managing gameplay sessions on behalf of a user.

## Known failure modes

- Invalid or missing walletAddress returns a 400 error
- Payment failure or insufficient USDC balance results in a 402 error
- Wallet address not associated with an active game account returns a 404
- Rate limiting if too many rapid refill requests are made

## How this service works

Instant full energy refill

## Output

A confirmation that the player's energy has been fully refilled, tied to the provided wallet address, after a $0.01 USDC payment is processed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "walletAddress"
 ],
 "properties": {
  "walletAddress": {
   "type": "string",
   "description": "Player wallet address"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/button-money-energy-refill-51922566/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from buttonmoney.vercel.app](https://www.zero.xyz/host/buttonmoney.vercel.app/llms.txt)
