# Clash of Coins Transaction Reporter

> Clash of Coins Transaction Reporter 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-13).

Reports and records a transaction event to the Clash of Coins agentic checkout system via the x402 payment protocol

## Facts

- Endpoint: POST https://x402.clashofcoins.com/x402/report-tx
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clash-of-coins-transaction-reporter-9eba46f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KtFYNCrsai7NoeQLGTMvP

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-transaction-reporter-9eba46f4 -d '<json body>'
```

Example prompt: Report this completed Clash of Coins transaction to their checkout system — it was a POST request with type 'payment' and the standard body payload so the agentic checkout pipeline can record it.

## When to prefer this

Use this endpoint when you need to report or record a transaction event specifically within the Clash of Coins x402 agentic checkout ecosystem. It is distinct from the health check endpoint and is the primary data-submission endpoint for transaction logging in this service.

## Known failure modes

- Missing required 'type' or 'method' fields in the input object returns a validation error
- Malformed input body causes a 400-level rejection
- Payment of $0.001 USDC not provided or invalid causes 402 Payment Required
- Service unavailability returns a 5xx error
- Duplicate transaction submissions may be rejected or silently ignored

## How this service works

Agentic checkout for Clash of Coins

## Output

A JSON object with a boolean 'success' field indicating whether the transaction was successfully reported to the Clash of Coins system.

## 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-transaction-reporter-9eba46f4/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)
