get_user_profile
Retrieve detailed profile information for a Lichess user, including optional trophies, by providing their username, enabling quick access to player details.
Instructions
Get a user's Lichess profile information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
trophies | No | Include user trophies | |
username | Yes | Username of the player |
Input Schema (JSON Schema)
{
"properties": {
"trophies": {
"default": false,
"description": "Include user trophies",
"type": "boolean"
},
"username": {
"description": "Username of the player",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}