> ## Documentation Index
> Fetch the complete documentation index at: https://replyke-feat-push-rich-payload-fields.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Following Count

> Get the count of accounts the current user follows

Get the count of accounts the current authenticated user follows.

## Response

<ResponseField name="count" type="number">
  Total number of accounts the current user follows
</ResponseField>

## Error Responses

<AccordionGroup>
  <Accordion title="Unauthorized - 401 Unauthorized">
    ```json theme={null}
    {
      "error": "Authentication required",
      "code": "auth/unauthorized"
    }
    ```
  </Accordion>

  <Accordion title="Server Error - 500 Internal Server Error">
    ```json theme={null}
    {
      "error": "Internal server error",
      "code": "follow/server-error"
    }
    ```
  </Accordion>
</AccordionGroup>

***

## Notes

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