Skip to main content
GET
/
:projectId
/
api
/
v7
/
users
/
:userId
/
followers
Get Followers
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/users/:userId/followers
{
  "data": [
    {
      "followId": "<string>",
      "user": {},
      "followedAt": "<string>"
    }
  ],
  "totalCount": 123,
  "page": 123,
  "limit": 123
}
Returns a paginated list of users who follow the specified user. This endpoint is public — no authentication required.

Path Parameters

userId
string
required
The Replyke user ID (UUID) of the user whose followers to retrieve.

Query Parameters

page
number
Page number for pagination. Defaults to 1.
limit
number
Number of results per page. Defaults to 20, maximum 100.

Response

On success, returns HTTP 200 with a paginated response:
data
array
Array of follow entries.
totalCount
number
Total number of followers.
page
number
Current page number.
limit
number
Page size used for this response.

See Also