I'm not sure how widely known it is that a club's Live team matches are now included at the end of the list of 'finished' matches in the club matches endpoint? You'd certainly be forgiven for missing this after reading the documentation:-
Club Matches
Description: List of daily and club matches, grouped by status (registered, in progress, finished).URL pattern: https://api.chess.com/pub/club/{ID}/matches
{
"finished": [
/** List of matches */
{
"name": "match name", //the team match name
"@id": "URL", // URL pointing to the team match endpoint
"opponent": "https://api.chess-dev.com/pub/club/testing-teams", // URL pointing to the opponent club endpoint
"result": "win", // see "Game results codes" section
"start_time": 1305324926, // timestamp of the match start
"time_class": "daily"
}
],
"in_progress": [
/** List of matches */
I completely missed what was meant by 'List of daily and club matches' & wasted some time trying to obtain useful Live match data by other means. And the "time_class" of "daily" gives the clear impression that only Daily matches are included.
So could the documentation please be updated to reflect the fact that both Daily & Live matches are included within the 'finished' category?