Classic APIs
ClassicFriendsApi
authenticatedUserFollowingsExist

authenticatedUserFollowingsExist

Returns whether or not the current user is following each userId in a list of userIds

Parameters

NameTypeDescription
userIdsArrayNonEmptyIfConstThe userIds to get following statuses for.

Example

const { data: followings } = await ClassicFriendsApi.authenticatedUserFollowingsExist({ userIds: [2655994471] }); 

Example Data

{ "2655994471": { isFollowing: false, isFollowed: false } } 

Endpoint

POST /v1/user/following-exists