1

I want to get all available events for certain (one) user on StackOverflow such as questions answered, accepted, posted questions, posted comments etc. Something similar to activity events in github API https://developer.github.com/v3/activity/events/.

The closest thing I found was this https://api.stackexchange.com/docs/events. However, this returns events from all users.

Is there a way to get such data?

Lotix
  • 309
  • 3
  • 4
  • 14

1 Answers1

2

You probably want to use the users methods, like /users/{ids}/answers and friends, as described somewhere down on this page in the API documentation.

Update:

The reputation-history returns all public reputation events. There also is the full-reputation-history that returns both public and private events.

zwippie
  • 15,050
  • 3
  • 39
  • 54
  • That's what I initially found. Just to make sure (in case I missed it) There's NO way to get list of all events in single API call? Similarly to github events? – Lotix Jan 30 '20 at 19:02
  • Perhaps the reputation-history will be useful. I've updated my answer. – zwippie Jan 30 '20 at 19:19