# Clash of Coins Accelerate (x402 Agentic Checkout)

> Clash of Coins Accelerate (x402 Agentic Checkout) 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-14).

Processes a micropayment-gated HTTP action on Clash of Coins via the x402 protocol, accelerating a game or craft action for $0.001 USDC per call

## Facts

- Endpoint: POST https://x402.clashofcoins.com/craft/x402/accelerate
- Price: $0.001/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-accelerate-x402-agentic-checkout-83ceedab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2RJt37doW8FIVVALqcP96

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-accelerate-x402-agentic-checkout-83ceedab -d '<json body>'
```

Example prompt: Accelerate my current crafting action in Clash of Coins — submit a POST request with my game body data and pay the 0.001 USDC fee via x402 to speed things up immediately.

## When to prefer this

Choose this endpoint when you need to programmatically accelerate a crafting or game action in Clash of Coins using an x402-compatible micropayment flow. It is purpose-built for agentic, low-cost ($0.001 USDC) automation of in-game progression steps rather than manual gameplay or bulk batch operations.

## Known failure modes

- Payment not attached or insufficient USDC balance — endpoint returns 402 Payment Required
- Malformed body or incorrect bodyType enum value — returns 400 Bad Request
- Game action not in an acceleratable state — backend returns error in JSON body
- x402 facilitator unavailable — payment settlement fails and action is not triggered
- Missing required 'input' fields (type, method, bodyType, body) — schema validation error

## How this service works

Agentic checkout for Clash of Coins

## Output

A JSON response confirming the acceleration action was processed, including any game-state updates or confirmation details returned by the Clash of Coins backend after the x402 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/clash-of-coins-accelerate-x402-agentic-checkout-83ceedab/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)
