LEZ API
The documentation of the general WebAPI of the rhythm videogame LEZ
Get player count
[GET] /LEZ/GetPlayerCount/v1
This will return a JSON with information of how many people are playing LEZ
NOTE: The number from "UsersPlayingLEZ" could take some time to update.
Result example:
{
"Result": "Success",
"UsersPlayingLEZ": 0
}
Get service info
[GET] /LEZ/GetServiceInfo/v1
This will return a JSON with information of the available services in LEZ
Parameters:
[Required] Service: The selected service to check (Game/UserProfiles/LezPlus/Multiplayer/BeatmapEditor/Leaderboards/SongLeaderboards/AccountLevelLeaderboards).
Result example 1:
{
"Result": "Success",
"Service": "Game",
"Status": "Online"
}
Result example 2:
{
"Result": "Success",
"Service": "Game",
"Status": "In maintenance",
"StartTimeUnix": 1704954930
}
Get version info
[GET] /LEZ/GetVersionInfo/v1
This will return a JSON with information of the versions of LEZ
Parameters:
[Optional] Beta: The beta version of the game (None/Public/Private) (default is "None").
Result example:
{
"Result": "Success",
"Version": "0.18.0",
"IsAvailable": true
}