get_broadcast_round
Retrieve detailed information about a specific round within a broadcast on the Lichess chess platform by providing the broadcast and round IDs.
Instructions
Get one round of a broadcast
Input Schema
Name | Required | Description | Default |
---|---|---|---|
broadcastId | Yes | ID of the broadcast | |
roundId | Yes | ID of the round |
Input Schema (JSON Schema)
{
"properties": {
"broadcastId": {
"description": "ID of the broadcast",
"type": "string"
},
"roundId": {
"description": "ID of the round",
"type": "string"
}
},
"required": [
"broadcastId",
"roundId"
],
"type": "object"
}