A while back I described how you can receive Stack Overflow notifications on your phone and smartwatch by reading RSS feed provided by StackOvedlow API (v1) and connecting it to PushOver push notification service (and their Android app and ultimately Pebble Smartwatch via awesome IFTTT.
Since then Stack Exchange retired version 1 of their API (and besides it didn’t provided all the information needed, e.g. total reputation points) so I was looking for an alternative. Fortunately StackOverflow API v2 provides very extensive set of functions. One call I was looking for is
api.stackexchange.com/2.2/users/[userid]?site=[site]
Where [userid]
is your Stack Exchange User ID and [site]
is the Stack Exchange site you’re interested in. For example for me call to
https://api.stackexchange.com/2.2/users/961695?site=stackoverflow
provides a nice JSON output: Continue reading →