API EndpointsfollowsGet Current User Followers Count

Get Current User Followers Count

Endpoint

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

Method: GET

Authentication Required: Yes


Description

Get the count of followers for the current user.


Request

Path Parameters

None

Query Parameters

None

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer token for authentication.

Body Parameters

None

Example Request

GET api.replyke.com/api/v6/your-project-id/follows/followers-count
Authorization: Bearer <ACCESS_TOKEN>

Response

Success Response (200 OK)

{
  "count": 342
}

Error Responses

Unauthorized (401 Unauthorized)

{
  "error": "Authentication required",
  "code": "auth/unauthorized"
}

Server Error (500 Internal Server Error)

{
  "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