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:

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:

Result example:

{

    "Result": "Success",

    "Version": "0.18.0",

    "IsAvailable": true

}

More LEZ APIs