Using the api it is possible to receive the detailed user reputation like this:
https://api.stackexchange.com/docs/reputation-on-users#ids=1719510&filter=default&site=stackoverflow&run=true
How is it possible to make it on SEDE?
Using the api it is possible to receive the detailed user reputation like this:
https://api.stackexchange.com/docs/reputation-on-users#ids=1719510&filter=default&site=stackoverflow&run=true
How is it possible to make it on SEDE?
SEDE doesn't provide such information and I guess this is because it is updated weekly; the API is real-time, though.
You can get the reputation of the user, however, it's in the Users
table. You can fetch it by using something like this:
SELECT Reputation
FROM Users
WHERE id=##UserId##
Here it is live!
Note: This is actually not as accurate as the API. It misses events like reputation reversal, although it includes the most important ones.