# Not able to get more followers/followings than 20

**URL:** https://forum.social.plus/t/not-able-to-get-more-followers-followings-than-20/946
**Category:** Web
**Created:** [October 5, 2023, 3:26am UTC](https://forum.social.plus/t/not-able-to-get-more-followers-followings-than-20/946 "2023-10-05T03:26:27Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![allwithyou](https://avatars.discourse-cdn.com/v4/letter/a/e95f7d/32.png) [@allwithyou](https://forum.social.plus/u/allwithyou)
#### Post date: [October 5, 2023, 3:26am UTC](https://forum.social.plus/t/not-able-to-get-more-followers-followings-than-20/946/1 "2023-10-05T03:26:27Z")

</div>

```auto
import { UserRepository } from '@amityco/js-sdk';

const liveFollowingsList = UserRepository.getFollowings(userId, status);

liveFollowingsList.once('dataUpdated', (data) => {
  console.log('data:', data, liveFollowingsList);
});

```

When I check the console.log, it looks like this:

 ![Screen Shot 2023-10-04 at 8.00.37 PM](https://europe1.discourse-cdn.com/flex013/uploads/amity/original/1X/b2e7152d0734afe80e85720c8f5a7e2c1740124c.png)

Actually, we have 75 followings but I can load 20 followings.  
How can I get all the "followings?

---

<div class="post-metadata">

### Author: ![abhishek](https://avatars.discourse-cdn.com/v4/letter/a/7ba0ec/32.png) [@abhishek](https://forum.social.plus/u/abhishek)
#### Post date: [October 5, 2023, 6:33am UTC](https://forum.social.plus/t/not-able-to-get-more-followers-followings-than-20/946/2 "2023-10-05T06:33:50Z")

</div>

I am guessing it’s due to pagination? They allow you to specify page #, and how many results to return per page I think,

but on this API page, I don’t see where to specify `pageId` or page #: [Amity API](https://api-docs.amity.co/#/Follow/get_api_v4_me_followers)

@SocialPlus_Support

---

<div class="post-metadata">

### Author: ![SocialPlus\_Support](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.social.plus/socialplus_support/32/798_2.png) [@SocialPlus\_Support](https://forum.social.plus/u/SocialPlus_Support)
#### Post date: [October 5, 2023, 8:27am UTC](https://forum.social.plus/t/not-able-to-get-more-followers-followings-than-20/946/3 "2023-10-05T08:27:05Z")

</div>

@abhishek please refer to this docs: [Amity API](https://api-docs.amity.co/#/Follow/get_api_v4_me_followers) - the pagination will be returned at the bottom of the response if there is the next page. You can then use the token to fetch the next results.

```auto
"paging": {
    "next": "string",
    "prev": "string"
  }

```
