---
title: "Get my ongoing games"
method: GET
path: "/api/account/playing"
tags: ["Games"]
---

# Get my ongoing games

`GET /api/account/playing`

Get the ongoing games of the current user.
Real-time and correspondence games are included.
The most urgent games are listed first.

## Query parameters

- `nb` integer

## Response `200`

The ongoing games of the logged in user.

- object
  - `nbMyTurn` integer, required — Number of games where it is my turn to play
  - `nowPlaying` object[], required — Games I'm currently playing
    - `fullId` string, required
    - `gameId` string, required
    - `fen` string, required
    - `color` 'white' | 'black', required
    - `lastMove` string, required
    - `source` 'lobby' | 'friend' | 'ai' | 'api' | 'tournament' | 'position' | 'import' | 'importlive' | 'simul' | 'relay' | 'pool' | 'arena' | 'swiss', required
    - `status` 'created' | 'started' | 'aborted' | 'mate' | 'resign' | 'stalemate' | 'timeout' | 'draw' | 'outoftime' | 'cheat' | 'noStart' | 'unknownFinish' | 'insufficientMaterialClaim' | 'variantEnd'
    - `variant` Variant, required
      - `key` 'standard' | 'chess960' | 'crazyhouse' | 'antichess' | 'atomic' | 'horde' | 'kingOfTheHill' | 'racingKings' | 'threeCheck' | 'fromPosition', required
      - `name` string, required
      - `short` string
    - `speed` 'ultraBullet' | 'bullet' | 'blitz' | 'rapid' | 'classical' | 'correspondence', required
    - `perf` 'ultraBullet' | 'bullet' | 'blitz' | 'rapid' | 'classical' | 'correspondence' | 'chess960' | 'crazyhouse' | 'antichess' | 'atomic' | 'horde' | 'kingOfTheHill' | 'racingKings' | 'threeCheck', required
    - `rated` boolean, required
    - `hasMoved` boolean, required
    - `opponent` object, required
      - `id` string, required
      - `username` string, required
      - `rating` integer
      - `ratingDiff` integer
      - `ai` integer
    - `isMyTurn` boolean, required
    - `secondsLeft` integer, required
    - `tournamentId` string
    - `swissId` string
    - `winner` 'white' | 'black'
    - `ratingDiff` integer

---

[API](https://skmtc.net/lichess/apis/lichess-org-api-reference.md) · [All operations](https://skmtc.net/lichess/apis/lichess-org-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lichess/lichess-org-api-reference/versions/1425db81eb3b/schema)
