get_user_public_data
Retrieve public user data, including optional trophies, from the Lichess chess platform by specifying a username. Simplify user profile access for analysis or management.
Instructions
Get public data of a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | Username of the player | |
withTrophies | No | Include user trophies |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "Username of the player",
"type": "string"
},
"withTrophies": {
"default": false,
"description": "Include user trophies",
"type": "boolean"
}
},
"required": [
"username"
],
"type": "object"
}