# Chess.com Player Profile Lookup

> Chess.com Player Profile Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Retrieves a Chess.com player's public profile including name, title, country, followers, league, join date, last-online time, and streamer status by username.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-chesscom-player-profile
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chess-com-player-profile-lookup-9069ae93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Mm0rtw1gT1uEEMHLBGRI-

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 chess-com-player-profile-lookup-9069ae93 -d '<json body>'
```

Example prompt: Can you pull up the Chess.com profile for the player 'hikaru' — I want to see their title, country, follower count, league, and when they were last online?

## When to prefer this

Use this endpoint when you need structured public profile metadata for a specific Chess.com player by username. It is keyless and requires no authentication, making it ideal for quick lookups in agent workflows, leaderboard enrichment, or verifying player credentials without needing direct Chess.com API access.

## Known failure modes

- Username not found — player does not exist on Chess.com
- Username misspelled or uses wrong casing — returns 404 or empty result
- Player account deleted or banned — profile may be unavailable
- Network timeout from upstream Chess.com API
- Malformed request body — missing required username field

## How this service works

Chess.com public player profile: name, title, country, followers, league, join and last-online times and streamer status. Pass a username. Keyless.

## Output

Returns the Chess.com player's public profile data including display name, title (e.g. GM, IM), country code, number of followers, league tier, account join date, last-online timestamp, and whether the account has streamer status.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chess-com-player-profile-lookup-9069ae93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
