Fetch metadata about the Steam server.

get_supported_api_list() returns information about all supported API endpoints of the web API. A complete list including undocumented endpoints can be found on https://steamapi.xpaw.me/.

get_servertime() returns the current Steam server time.

steam_stats() returns the current users online and ingame.

steam_stats()

get_supported_api_list()

get_servertime()

get_servers(filter = NULL, limit = NULL)

Value

get_supported_api_list()

An unnamed list where each index contains a named list with information on the respective API endpoint.

get_servertime()

A POSIXct value.

steam_stats()

A named list of length 2

get_servers()

A dataframe containing information about available game servers.

Examples

if (FALSE) { # \dontrun{
get_supported_api_list()

get_servertime()

steam_stats()

get_servers()
} # }