Hey @DallasNChains, Thanks for answering!
I’m developing a bot for a channel which awards points to users for watching streams (essentially a channel currency if you like). The bot updates a database which is also connected to a website where users can check their currency and buy items in a store.
For most users, they’ve already talked in the channel so I have been able to pick up their Twitch ID and display name from the IRC messages and save that into the DB.
However there are some users who have not yet talked / don’t want to talk and so I have to retrieve their ID and display name from the Kraken API. For busy streams with around 3k viewers, there could be anywhere around 10 - 50 users which I have to make individual calls for, to then save that in the DB.
I would only have to make this call once for those users as the details are then stored in the DB but I was just wondering if there was a grouped call for it. Could alleviate load on your end and also reduce the number of requests on my end.
Thanks.