Skip to main content
GET
/
:projectId
/
follows
/
following-count
Fetch Following Count
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/follows/following-count
{
  "count": 123
}
Get the count of accounts the current authenticated user follows.

Response

count
number
Total number of accounts the current user follows

Error Responses

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

Notes

  • Requires authentication
  • Returns the total number of accounts the current user follows
  • Rate limiting: 100 requests per 5 minutes
I