How do I view the follower count of multiple channels at once?

hello.
As the title suggests, I want to check the number of followers of multiple channels (broadcasters) at the same time.
I know that other GET APIs allow you to continue adding parameters by treating them with &.

Among the Twitch APIs, why can only one broadcaster_id be entered in “https://api.twitch.tv/helix/channels/followers?broadcaster_id=123456”?
https://api.twitch.tv/helix/channels/followers?broadcaster_id=123456&broadcaster_id=67890” I wanted to use it like this, but it didn’t work.

Of course, the current API response was total, which did not seem appropriate for receiving multiple data at the same time.

When I call the API like this: “https://api.twitch.tv/helix/channels/followers?broadcaster_id=123456&broadcaster_id=67890”,

response {
data:[ {broadcaster_id=12345, total=111}, {broadcaster_id=67890,total=10} ]
}
I would like to receive a response like this all at once.

The reason is that the rate-limit is too small to search a large number of creators.

And above all, users do not log in
Because I want to provide data.

Isn’t there a better way?

The stated API only supports one broadcaster at a time.

A number of endpoints support specifying multiple entities please refer to the documentation for the endpoints you are interested in to see if they do Reference | Twitch Developers

it was unclear you were being specific about followers information your question was written in a general way

Providing what?

if you have broadcaster (or moderator) authentication of the channels in question EventSub can be used to notify you of new followers and you can increase the total that way, then periodicially resync to account for unfollows/bot removals

Broadly speaking followers is a useless metric and doesn’t really tell you anything about the channel.

There are other metrics that might be of more use, but it depends on what you are trying to do/what your product does. Theres a bunch of possibilties that could be of use.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.