I searched the entire documentation for the Stack Exchange API v2.2, but could not find any API to get the data about the Impact section on the user page.
I am interested in the Impact/Number of People Reached data for a specific user.
One way to solve this problem is to GET
the entire user page by using the URL: https://stackoverflow.com/users/${id}
and using document.getElementById()
, get the required data.
But the problem is, fetching the entire user page is bulky and not the optimal solution.