Skip to main content
GET
/
:projectId
/
api
/
v7
/
users
/
:userId
/
followers-count
Get Followers Count
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/users/:userId/followers-count
{
  "count": 123
}
Returns the total number of users following the specified user. This endpoint is public — no authentication required.

Path Parameters

userId
string
required
The Replyke user ID (UUID) of the user whose follower count to retrieve.

Response

On success, returns HTTP 200:
count
number
Total number of users following this user.

See Also