Users
Get crosstable
Get total number of games, and current score, of any two users. If the matchup flag is provided, and the users are currently playing, also gets the current match game number and scores.
get/api/crosstable/{user1}/{user2}
Path parameters
user1string required
user2string required
Query parameters
matchupboolean
Whether to get the current match data, if any
Response
The crosstable of the two users.
Example response
{
"users": {
"neio": 201.5,
"thibault": 144.5
},
"nbGames": 346
}