Skip to main content
GET
/
:projectId
/
users
/
:userId
/
followers-count
Fetch Followers Count
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/users/:userId/followers-count
{
  "count": 123
}
Get the count of followers for a specific user. This is a public endpoint that does not require authentication.

Path Parameters

userId
string
required
ID of the user to get followers count for

Response

count
number
Total number of followers for the specified user

Error Responses

{
  "error": "Invalid or missing userId",
  "code": "follow/invalid-user-id"
}
{
  "error": "User not found",
  "code": "user/not-found"
}
{
  "error": "Internal server error",
  "code": "follow/server-error"
}
I