Ranked Bedwars
Here is the list of all Ranked Bedwars endpoints.
Check if a player exists
GET https://api.memum.io/v1/rbw/exists?uuid=[uuid]
This returns true if a given player UUID has been registered to the Ranked Bedwars database.
This uses 1 credit per request.
Headers
Name
Value
Content-Type
application/json
Authentication
Your API Key
Response
{
"success": true,
"data": {
"exists": true
}
}{
"success": true,
"reason": "Missing query parameter: [uuid]"
}{
"success": false,
"reason": "You are being ratelimited!"
}Get player stats
GET https://api.memum.io/v1/rbw/stats?uuid=[uuid]
This returns all Ranked Bedwars player statistics.
This uses 2 credits per request.
Headers
Name
Value
Content-Type
application/json
Authentication
Your API Key
Response
{
"success": true,
"data": {
"stats": {
"bedsBroken": 0,
"bestStreak": 0,
"deaths": 0,
"elo": 0,
"finalKills": 0,
"kills": 0,
"killsBeforeDia2": 0,
"killsBeforeEm2": 0,
"losses": 0,
"mvps": 0,
"peakElo": 0,
"streak": 0,
"wins": 0,
"worstStreak": 0
}
}
}{
"success": true,
"reason": "Missing query parameter: [uuid]"
}{
"success": false,
"reason": "You are being ratelimited!"
}Last updated