Is it possible to get the number of answers and questions the a user has made through the stack overflow api?
Currently, I have found a hacky way. It consists of getting the json response for user questions (or answers) and then counting the number of items in the array.
However, since that data is paginated, it requires multiple requests to count them all. Id rather find a way to get the count using only a single request.
Im getting my information from https://api.stackexchange.com/docs maby im missing something?