> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch followers count

> Get the total number of followers for the current user

## Overview

Returns a function that fetches the total follower count of the currently authenticated user.

For getting another user's follower count, see `useFetchFollowersCountByUserId`.

## Usage Example

```tsx theme={null}
import { useFetchFollowersCount } from "@replyke/react-js";

function FollowerCount() {
  const fetchFollowersCount = useFetchFollowersCount();
  const [count, setCount] = useState<number | null>(null);

  useEffect(() => {
    fetchFollowersCount().then((res) => setCount(res.count));
  }, []);

  return <span>{count ?? "..."} followers</span>;
}
```

## Parameters

The hook returns a function that takes no parameters.

## Returns

<ResponseField name="count" type="number">
  Total number of users following the current user.
</ResponseField>

## Related

* [useFetchFollowersCountByUserId](/hooks/follows/use-fetch-followers-count-by-user-id) — get count for any user
* [useFetchFollowers](/hooks/follows/use-fetch-followers) — fetch the full list
