Twitch API Get followed count NOT followers

Hi,

I’m developping a c# app, and I need to retrieve the followed count (don’t need followers count), so the number of channel my twitch account is following, is there a way to get it as easily as followers count.
I want an easy way because curently I can get it like this, with GetFollowedChannels() which give me a list of channel, but I can get max 100 channels, and I use an offset to get 100 next channels etc… until I get an empty list.
Thanks.

0_yami_0

The get-user-follows endpoint returns an object with a “_total” field. If all you need is the count of channels a user is following and not specific data about the channels themselves then you only have to call the API once to get that.

Perfect, it works as expected, Thanks.