/api/player/

Use: Gives you a list of information about the player associated with the given name, including: Forum flags, time registered as a unix timestamp, correctly cased username, and their numerical id.

Usage

Send a GET request to /api/player/ with a single player name (case of characters in name does not matter).

< GET /api/player/exampleuser1

>	{"flags: ["a","b","d","e","m"], "id": 100, "premium": false, "registered": 1376450557, "username": "ExampleUSER1"}
				

/api/players/

Use: Gives you some statistics about classicube's accounts. Currently just returns total number of registered accounts.

Usage

Send a GET request to /api/players/.

< GET /api/players/

>	{"playercount": 10000}