Skip to main content
GET
/
:projectId
/
api
/
v7
/
users
/
:userId
/
follow
Get Follow Status
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/users/:userId/follow
{
  "isFollowing": true,
  "followId": "<string>",
  "followedAt": "<string>"
}
Returns the follow status between the authenticated user and the specified user. If the authenticated user is following, the response includes the follow record ID and timestamp.

Path Parameters

userId
string
required
The Replyke user ID (UUID) of the user to check follow status for.

Response

On success, returns HTTP 200. The shape differs based on follow status: When following:
isFollowing
boolean
true — the authenticated user follows this user.
followId
string
ID of the follow record.
followedAt
string
ISO timestamp of when the follow was created.
When not following:
isFollowing
boolean
false.

See Also