Skip to main content
GET
/
:projectId
/
connections
/
count
Get Current User Connections Count
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/connections/count
{
  "count": 123
}
Get the count of established connections for the current user.

Response

count
number
Total number of established connections for the current user

Error Responses

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

Notes

  • Requires authentication
  • Returns the total number of established connections for the current user
  • Only counts accepted connections, not pending or declined requests
  • Rate limiting: 100 requests per 5 minutes
I