Skip to main content
GET
/
:projectId
/
follows
/
followers-count
Fetch Followers Count
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/follows/followers-count
{
  "count": 123
}
Get the count of followers for the current authenticated user.

Response

count
number
Total number of followers for the current user

Error Responses

{
  "error": "Authentication required",
  "code": "auth/unauthorized"
}
{
  "error": "Internal server error",
  "code": "follow/server-error"
}

Notes

  • Requires authentication
  • Returns the total number of followers for the current user
  • Rate limiting: 100 requests per 5 minutes
I