# Clash of Coins Player Lookup

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

Looks up a player's profile or data in the Clash of Coins game via a paid x402 agentic checkout endpoint

## Facts

- Endpoint: POST https://x402.clashofcoins.com/shop/x402/player-lookup
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clash-of-coins-player-lookup-8bfd891c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gHTel7fM-dpZadByQWEpl

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-player-lookup-8bfd891c -d '<json body>'
```

Example prompt: Can you look up the player 'SatoshiSlayer99' on Clash of Coins and tell me their stats or profile info?

## When to prefer this

Use this endpoint when you need to retrieve player-specific data from the Clash of Coins game and are operating in an x402-compatible agentic environment that can handle micropayments. It is the canonical, paid lookup route for Clash of Coins player profiles, suitable when you need real-time or up-to-date player information rather than cached data.

## Known failure modes

- Player not found — returns error if the player identifier does not match any account
- Invalid body format — returns error if bodyType or required fields are missing or malformed
- Payment failure — x402 payment of $0.02 USDC not completed, resulting in 402 Payment Required response
- Rate limiting or abuse — excessive requests may be blocked
- Internal server error — game backend unavailable or player service down

## How this service works

Agentic checkout for Clash of Coins

## Output

Returns a JSON object containing player profile and/or game data for the queried Clash of Coins player, such as account details, stats, rankings, or related game information. The exact response structure depends on the game's player schema.

## 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-player-lookup-8bfd891c/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)
