API EndpointsfollowsGet Current User Followers List

Get Current User Followers List

Endpoint

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

Method: GET

Authentication Required: Yes


Description

Get list of accounts that follow the current user.


Request

Path Parameters

None

Query Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number (default: 1)
limitnumberNoItems per page (default: 20, max: 100)

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer token for authentication.

Body Parameters

None

Example Request

GET api.replyke.com/api/v6/your-project-id/follows/followers?page=1&limit=20
Authorization: Bearer <ACCESS_TOKEN>

Response

Success Response (200 OK)

{
  "followers": [
    {
      "followId": "follow-uuid",
      "user": {
        "id": "user-uuid",
        "name": "Jane Smith",
        "username": "janesmith",
        "avatar": "https://example.com/avatar.jpg",
        "bio": "Product Manager",
        "reputation": 200
      },
      "followedAt": "2024-01-01T10:00:00.000Z"
    }
  ],
  "pagination": {
    "currentPage": 1,
    "totalPages": 18,
    "totalCount": 342,
    "hasNextPage": true,
    "hasPreviousPage": false,
    "limit": 20
  }
}

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