get_arena_info
Retrieve detailed information about a specific arena tournament on Lichess using the tournament ID. Ideal for players and organizers to track tournament status, participants, and results.
Instructions
Get info about an arena tournament
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tournamentId | Yes | Tournament ID |
Input Schema (JSON Schema)
{
"properties": {
"tournamentId": {
"description": "Tournament ID",
"type": "string"
}
},
"required": [
"tournamentId"
],
"type": "object"
}