πKnockbackFFA
The following endpoint will return KnockbackFFA-related statistics:
Getting global information about a player info on KnockbackFFA
GET https://api.comugamers.net/player/knockbackffa
Gets all public information about a specific player.
Query Parameters
username*
String
The username of the player.
uuid
String
The player's unique ID. Due to how our authentication system works, player UUIDs may differ from what you would normally see.
{
"status": 400,
"message": "Bad Request"
}{
"status": 404,
"message": "Not Found"
}{
"status": "OK",
"data": {
"uuid": "2477aadd-23bf-47dd-a556-38bde5ce9371",
"username": "Jojo1542",
"stats": {
"coins": 0,
"kills": 26,
"deaths": 659,
"blocksPlaced": 6228,
"highestStreak": 3
}
}
}Player information
uuid
UUID
The unique ID of the player.
username
String
The name of the player.
privacyPreferences
Object
The privacy preferences of the player.
stats
Object
The player knockback statistics.
statisticsShown
boolean
Whether statistics should be shown.
medalsShown
boolean
Whether medals should be shown.
linkedAccountsShown
boolean
Whether linked accounts should be shown.
basicInformationShown
boolean
Whether basic information such as the first login, last login and preferred language should be shown.
coins
Integer
The amount of coins the player currently has.
kills
Integer
The current Kills that the player made.
deaths
Integer
The amount of times that a player dead.
blocksPlaced
Integer
The amount of blocks that a player placed.
highestStreak
Integer
The highest streak of kills that a player made.
Last updated