get_user_performance
Retrieve detailed performance statistics of a Lichess player by specifying their username and preferred game speed or variant.
Instructions
Get performance statistics of a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
perf | Yes | The speed or variant | |
username | Yes | Username of the player |
Input Schema (JSON Schema)
{
"properties": {
"perf": {
"description": "The speed or variant",
"enum": [
"ultraBullet",
"bullet",
"blitz",
"rapid",
"classical",
"correspondence",
"chess960",
"crazyhouse",
"antichess",
"atomic",
"horde",
"kingOfTheHill",
"racingKings",
"threeCheck"
],
"type": "string"
},
"username": {
"description": "Username of the player",
"type": "string"
}
},
"required": [
"username",
"perf"
],
"type": "object"
}