Hello,
So I've been working on some programs to extract user data and store it in a database (in order to create a website for my stream and possibly other streams). One thing that I find annoying is that I have to do one call to get all the data for a user (api|get_user|:user or api|get_users|:offset|:limit and iterate) and then to get the rank to include it I have to make a second call for each individual user to api|get_rank|:user which when dealing with a bulk export makes it a-lot less efficient.
Another endpoint that would make an operation like this much more efficient would be a way to know how many users are actually in the database, we currently have the api|get_users|:offset|:limit but need to know how many there are to write good loops, if we could make one call and get back that number it would make mine as well as other people using the API to do similar things have a much easier life