When fetching a users stats for a game from the steam API using:
url = f"http://api.steampowered.com/ISteamUserStats/GetUserStatsForGame/v0002/"
params = {
'appid': self.appid,
'key': apikey,
'steamid': steamid
}
response = requests.get(url, params=params)
If the game isn't owned it returns None. However whether or not the game is owned I would like to be able to view the available stat names as I would like to display them. Is there any way to do this? Do I need to find an account with all games on? Thanks.