Hi all,
I was wondering if there's a simple way to fetch the parsed ranked games, similar to the parsedMatches endpoint.
My current solution is to use GET /parsedMatches to get last parsed 100 game ids, use GET /matches/{match_id} to get the games by id, and then filter out by the game mode. However, after the filtering I generally end up with only a few ranked games and this feels like a wasteful way to find data only for the ranked games.
Cheers