API EndpointsfollowsGet Current User Following Count

Get Current User Following Count

Endpoint

URL: api.replyke.com/api/v6/:projectId/follows/following-count

Method: GET

Authentication Required: Yes


Description

Get the count of accounts the current user follows.


Request

Path Parameters

None

Query Parameters

None

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer token for authentication.

Body Parameters

None

Example Request

GET api.replyke.com/api/v6/your-project-id/follows/following-count
Authorization: Bearer <ACCESS_TOKEN>

Response

Success Response (200 OK)

{
  "count": 156
}

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 the total number of accounts the current user follows
  • Rate limiting: 100 requests per 5 minutes