diff --git a/instagram_private_api/endpoints/friendships.py b/instagram_private_api/endpoints/friendships.py index 5b090df3..225ccb89 100644 --- a/instagram_private_api/endpoints/friendships.py +++ b/instagram_private_api/endpoints/friendships.py @@ -392,3 +392,11 @@ def remove_follower(self, user_id): 'friendships/remove_follower/{user_id!s}/'.format(**{'user_id': user_id}), params=params) return res + def get_presence(self): + """ + Get presence of people from direct messages + + :return: + """ + res = self._call_api('direct_v2/get_presence/') + return res