get_ongoing_games
Retrieve your active real-time and correspondence chess games from Lichess, specifying the maximum number of games to fetch (1-50).
Instructions
Get your ongoing games (real-time and correspondence)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nb | No | Max number of games to fetch (1-50) |
Input Schema (JSON Schema)
{
"properties": {
"nb": {
"default": 9,
"description": "Max number of games to fetch (1-50)",
"maximum": 50,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}