getInformation

suspend fun getInformation(broadcasterIds: List<String>): List<ChannelInformation>

Twitch API: Get Channel Information

Gets information about one or more channels.

Return

a list of channel information objects. The list is empty if the specified channels weren't found.

Parameters

broadcasterIds

the IDs of the broadcasters whose channels you want to get. You may specify a maximum of 100 IDs. The API ignores duplicate IDs and IDs that are not found.


suspend fun getInformation(broadcasterId: String): ChannelInformation

Convenience overload that gets channel information for a single broadcaster.

See also