GET
/
users
/
is-following
/
{identifier}
Check if following user
curl --request GET \
  --url https://localhost:5000/users/is-following/{identifier} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "isFollowing": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

identifier
string
required

Username or user ID

Response

Following status

success
boolean
Example:

true

isFollowing
boolean