Skip to main content
GET
/
:projectId
/
api
/
v7
/
users
/
:userId
/
following-count
Get Following Count
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/api/v7/users/:userId/following-count
{
  "count": 123
}
Returns the total number of users that the specified user follows. This endpoint is public — no authentication required.

Path Parameters

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

Response

On success, returns HTTP 200:
count
number
Total number of users this user is following.

See Also