Retrieve details about the game groups (or community hubs) associated with an appID.

get_game_group(appids)

Arguments

appids

A vector of multiple appIDs of applications in the Steam store. There are generally two ways of retrieving an appID:

  • Inspect or parse the store URL of an application, e.g. https://store.steampowered.com/app/10/CounterStrike/

  • Query applications programmatically, e.g. using search_apps

Value

A dataframe containing information about the game group associated with an application. Notably, the columns clanAccountID and clanSteamIDString contain the clanID and gid, respectively. Each row represents one appID.

Examples

if (FALSE) { # \dontrun{
# get the community hubs of Counter Strike and Team Fortress
get_game_group(c(10, 440))
} # }