# x402.clashofcoins.com Cheap Health Probe

> x402.clashofcoins.com Cheap Health Probe 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).

Low-cost GET health check that verifies the x402 payment gateway is operational and capable of real settlement on clashofcoins.com

## Facts

- Endpoint: GET https://x402.clashofcoins.com/x402/cheap-health
- 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/x402-clashofcoins-com-27ffc360
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UFIvwtl4hr-g8wFx5nQMH

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-27ffc360
```

Example prompt: Can you do a quick health check on the Clash of Coins x402 payment gateway to confirm it's live and capable of real settlement — use a GET request with type and method fields set?

## When to prefer this

Use this endpoint when you need a cheap, low-overhead way to confirm that the x402 payment infrastructure on clashofcoins.com is live and ready for real settlement before committing to higher-cost agentic transactions. Prefer this over full checkout or funding routes when you only need a liveness or readiness signal.

## Known failure modes

- Gateway is down — returns non-200 HTTP status or timeout
- x402 payment header not supplied — returns 402 Payment Required before the probe executes
- Settlement backend unavailable — health check returns degraded or error status
- Malformed input schema — missing required 'type' or 'method' fields causes rejection
- Rate limiting — too many probes in succession may throttle responses

## How this service works

Low-cost gateway health probe for real x402 settlement checks

## Output

Returns a health status response indicating whether the x402 gateway on clashofcoins.com is operational and capable of performing real settlement checks, likely including a status field and possibly latency or settlement readiness indicators.

## Example request

```json
{
 "input": {
  "type": "health",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "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-27ffc360/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)
