get_user_activity
Retrieve the activity feed of a Lichess user by providing their username. Access game history, analysis, and recent interactions for insights into their chess activity.
Instructions
Get activity feed of a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | Username of the player |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "Username of the player",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}