Skip to main content
GET
/
:projectId
/
follows
/
followers
Fetch Followers
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/follows/followers
{
  "followers": [
    {
      "followId": "<string>",
      "user": {
        "id": "<string>",
        "name": "<string>",
        "username": "<string>",
        "avatar": "<string>",
        "bio": "<string>",
        "reputation": 123
      },
      "followedAt": "<string>"
    }
  ],
  "pagination": {
    "currentPage": 123,
    "totalPages": 123,
    "totalCount": 123,
    "hasNextPage": true,
    "hasPreviousPage": true,
    "limit": 123
  }
}
Get paginated list of accounts that follow the current authenticated user.

Query Parameters

page
number
default:"1"
Page number for pagination
limit
number
default:"20"
Items per page (maximum: 100)

Response

followers
array
Array of follower objects
pagination
object

Error Responses

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

Notes

  • Requires authentication
  • Returns paginated list of accounts that follow the current user
  • Each follower entry includes user details and follow timestamp
  • Default pagination: 20 items per page, maximum 100 items per page
  • Rate limiting: 100 requests per 5 minutes
I