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.
This is only possible via scraping users' profiles. Neither SE API nor SEDE provide a field with the number of people reached. You can only get the number of views a profile has received. It's the
view_countfield in the/users/{ids}method (not included in the filter by default) and theViewscolumn in theUserstable in SEDE. See the database schema for more details.