get_timeline
Fetch your recent Lichess activity history using a timestamp and limit. Retrieve up to 30 events to track games, analyses, account updates, and tournament participation.
Instructions
Get your timeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nb | No | Max number of events to fetch (1-30) | |
since | No | Show events since this timestamp |
Input Schema (JSON Schema)
{
"properties": {
"nb": {
"default": 15,
"description": "Max number of events to fetch (1-30)",
"maximum": 30,
"minimum": 1,
"type": "number"
},
"since": {
"description": "Show events since this timestamp",
"type": "number"
}
},
"type": "object"
}