The API blocked requests from Nightbot, the command is dead.
Alright, after some quick tests, you were right to open a new thread about this, because since you use different services, the URL to get your data is relatively different.
And they just edited their post so people can’t use it to get help anymore, great…
Here’s the URL to your data:
https://api.tracker.gg/api/v2/warzone/standard/profile/battlenet/HotteTove%232682/
And here’s the URL to the data of the other post that’s linked above:
https://api.tracker.gg/api/v2/warzone/standard/profile/atvi/Sanoozle%233011952/
The main differences are that your discriminator—what comes after the #
(%23
when URL encoded)—is shorter, and that you’re on battlenet
when they’re on atvi
. We can see these differences in the profile URLs.
So here’s your command:
$(eval s=$(urlfetch json https://api.tracker.gg/api/v2/warzone/standard/profile/battlenet/HotteTove%232682/).data.segments[0].stats; r=s.kdRatio.value; k=s.kills.value; d=s.deaths.value; w=s.wins.value; `Wins: ${w} | Kills: ${k} | Deaths: ${d} | Kills/Deaths Ratio: ${r}`)
It has the total wins, kills, deaths, and kills/deaths ratio, there’s no data regarding suicides or top kills in one game inside the API.