Ok, well what lack has done is provide programmers with an easy way to get data from Conquer Club games.
He has written a script which programmers can talk to by using a special URL.
You can add parameters to this URL to get different types of games (for example only tournament games or games from a specific player).
The script returns a file full of data about all the games asked for, such as game number, players, eliminations, and points won/lost.
So for example I could ask this script to give me a file showing data for all games for a specific tournament.
Or I could ask for all of my active games.
Or even show all speed games for any player.
I can then look at this file and use programming to extract all of this data and then use.
For example this greasemonkey script:
viewtopic.php?f=59&t=86543Shows a list of games played and wins for all players in any tournament.
All you do is specify a tournament name and it asks for the data file(s) for that tournament.
The script then looks at all the games in the file and collects the data for each player.
Then it displays it.
So this is an example of how the API can be used.