Chess.com Matches API

Daily and live team match details

Operations 6

GET /player/{username}/matches Get Player Team Matches #
GET /club/{url-ID}/matches Get Club Matches #
GET /match/{ID} Get Daily Team Match #
GET /match/{ID}/{board} Get Daily Team Match Board #
GET /match/live/{ID} Get Live Team Match #
GET /match/live/{ID}/{board} Get Live Team Match Board #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/chess-com-matches-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chess-com-matches-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chess.com Published Data Clubs Matches API
  description: 'Public, read-only REST API exposing Chess.com data: player profiles and stats, monthly game

    archives (JSON and PGN), clubs and members, daily and live team matches, Swiss and round-robin

    tournaments, titled-player lists, country rosters, the daily puzzle, the streamer list, and

    live leaderboards.


    The API is unauthenticated; rate limiting applies to parallel requests (429 Too Many Requests).

    Responses use JSON-LD with ETag, Last-Modified, gzip, and JSONP support. Most endpoints refresh

    at most every 12-24 hours. Clients are encouraged to send a recognizable User-Agent including a

    contact email or URL.

    '
  version: '2026-05-25'
  contact:
    name: Chess.com Support
    url: https://support.chess.com
  x-logo:
    url: https://www.chess.com/favicon.ico
servers:
- url: https://api.chess.com/pub
  description: Chess.com Published Data API
tags:
- name: Matches
  description: Daily and live team match details
paths:
  /player/{username}/matches:
    get:
      summary: Get Player Team Matches
      operationId: getPlayerMatches
      tags:
      - Matches
      parameters:
      - $ref: '#/components/parameters/Username'
      responses:
        '200':
          description: Team match participation
          content:
            application/json:
              schema:
                type: object
  /club/{url-ID}/matches:
    get:
      summary: Get Club Matches
      operationId: getClubMatches
      tags:
      - Matches
      parameters:
      - $ref: '#/components/parameters/ClubUrlId'
      responses:
        '200':
          description: Team matches for the club
          content:
            application/json:
              schema:
                type: object
  /match/{ID}:
    get:
      summary: Get Daily Team Match
      operationId: getDailyMatch
      tags:
      - Matches
      parameters:
      - $ref: '#/components/parameters/MatchId'
      responses:
        '200':
          description: Daily team match details
          content:
            application/json:
              schema:
                type: object
  /match/{ID}/{board}:
    get:
      summary: Get Daily Team Match Board
      operationId: getDailyMatchBoard
      tags:
      - Matches
      parameters:
      - $ref: '#/components/parameters/MatchId'
      - $ref: '#/components/parameters/Board'
      responses:
        '200':
          description: Daily team match board
          content:
            application/json:
              schema:
                type: object
  /match/live/{ID}:
    get:
      summary: Get Live Team Match
      operationId: getLiveMatch
      tags:
      - Matches
      parameters:
      - $ref: '#/components/parameters/MatchId'
      responses:
        '200':
          description: Live team match details
          content:
            application/json:
              schema:
                type: object
  /match/live/{ID}/{board}:
    get:
      summary: Get Live Team Match Board
      operationId: getLiveMatchBoard
      tags:
      - Matches
      parameters:
      - $ref: '#/components/parameters/MatchId'
      - $ref: '#/components/parameters/Board'
      responses:
        '200':
          description: Live team match board
          content:
            application/json:
              schema:
                type: object
components:
  parameters:
    Username:
      name: username
      in: path
      required: true
      description: All-lowercase Chess.com username
      schema:
        type: string
    Board:
      name: board
      in: path
      required: true
      description: Board number within the team match
      schema:
        type: integer
    ClubUrlId:
      name: url-ID
      in: path
      required: true
      description: Club URL-ID slug from chess.com/club/{url-ID}
      schema:
        type: string
    MatchId:
      name: ID
      in: path
      required: true
      description: Numeric team-match ID
      schema:
        type: integer