1

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?

Nathalie
  • 1,228
  • 7
  • 20
  • I believe this belongs on [meta.stackoverflow.com](https://meta.stackoverflow.com). – jww Dec 01 '19 at 18:37

1 Answers1

1

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.

double-beep
  • 5,031
  • 17
  • 33
  • 41