# Clash of Coins Agentic Checkout

> Clash of Coins Agentic Checkout is a paid API for AI agents from x402.clashofcoins.com, paid per call via x402, $9/call, status unknown (last checked 2026-09-14).

Processes a paid agentic checkout transaction for Clash of Coins via the x402 payment protocol at $9 USDC per call

## Facts

- Endpoint: POST https://x402.clashofcoins.com/agentic/x402/buy
- Price: $9/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clash-of-coins-agentic-checkout-468c3068
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jZrGluYK0M--4-DyB8Ii7

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 clash-of-coins-agentic-checkout-468c3068 -d '<json body>'
```

Example prompt: Go ahead and complete a purchase on Clash of Coins — submit a JSON checkout request and pay the $9 USDC fee to finalize the buy.

## When to prefer this

Choose this endpoint when you need an AI agent to autonomously complete a purchase on the Clash of Coins platform using the x402 crypto payment protocol with USDC. It is purpose-built for agentic (non-human) checkout flows where the $9 USDC fee is paid programmatically at call time. Prefer this over manual or browser-based checkout when automating game purchases or coin acquisitions in an agent pipeline.

## Known failure modes

- Payment of $9 USDC not included or insufficient — returns HTTP 402 requiring payment
- Malformed or missing required 'input' object in body — returns validation error
- Invalid bodyType enum value (not json, form-data, or text) — schema rejection
- Method not POST — endpoint rejects non-POST requests
- Network or settlement failure in x402 facilitator — transaction not confirmed
- Empty or invalid body field — checkout cannot be processed

## How this service works

Agentic checkout for Clash of Coins

## Output

A JSON response confirming the outcome of the Clash of Coins checkout transaction, including any purchase confirmation details returned by the platform after the $9 USDC x402 payment is settled.

## 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/clash-of-coins-agentic-checkout-468c3068/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)
