Getting game information - MangoDevx/BattleMetricsNet GitHub Wiki
Getting game information
Getting the game information requires a gameId, which is just the name of the game.
- Some games are shortened. Exmaple:
Ark: Survival Evolved
is justArk
var minecraftGameInfo = await _bmClient.GetGameInfoAsync("minecraft");
Reading the information
Most of the details you'll be looking for are in info.Data.Attributes
, however other data is scattered around due to the api response. The api also has some redundant properties you may run into.