# Clash of Coins Agent Wallet Funding

> Clash of Coins Agent Wallet Funding is a paid API for AI agents from x402.clashofcoins.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Funds an agent wallet via the x402 micropayment protocol on the Clash of Coins platform

## Facts

- Endpoint: POST https://x402.clashofcoins.com/agent-wallet/x402/fund
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-clashofcoins-com-ef37a8a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c4Qklo2POpnudzKpwU6y5

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 x402-clashofcoins-com-ef37a8a2 -d '<json body>'
```

Example prompt: Fund my Clash of Coins agent wallet by sending a POST funding request so the agent has enough balance to start making automated moves in the game.

## When to prefer this

Use this endpoint when an AI agent needs to autonomously fund its own wallet on the Clash of Coins platform using the x402 micropayment protocol. Prefer this over generic payment endpoints when operating within the Clash of Coins agentic gaming ecosystem where x402-based per-call billing is required.

## Known failure modes

- Insufficient USDC balance causes payment failure (402 Payment Required)
- Invalid or missing 'type' or 'method' fields in input body returns 400 Bad Request
- x402 payment not verified results in rejection
- Network or settlement timeout causes transaction to fail
- Malformed request body returns schema validation error

## How this service works

Agentic checkout for Clash of Coins

## Output

Returns a confirmation that the agent wallet has been funded, typically including the updated balance or transaction acknowledgment after the x402 USDC micropayment settles.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {},
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-clashofcoins-com-ef37a8a2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.clashofcoins.com](https://www.zero.xyz/host/x402.clashofcoins.com/llms.txt)
