API EndpointsUsersFollow OperationsGet User Followers Count

Get User Followers Count

Endpoint

URL: api.replyke.com/api/v6/:projectId/users/:userId/followers-count

Method: GET

Authentication Required: No


Description

Get the count of followers for a specific user. This is a public endpoint that does not require authentication.


Request

Path Parameters

ParameterTypeRequiredDescription
userIdstringYesID of the user to get followers count for

Headers

None

Body Parameters

None

Example Request

GET /users/user-uuid-123/followers-count

Response

Success Response (200 OK)

{
  "count": 342
}

Error Responses

Server Error (500 Internal Server Error)

{
  "error": "Internal server error",
  "code": "follow/server-error"
}

Notes

  • This endpoint does not require authentication
  • Returns the total number of users following the specified user
  • Public endpoint accessible to all users
  • Rate limiting: 100 requests per 5 minutes