StreamResource

Twitch Helix Streams API resource.

Provides methods for retrieving stream information, stream keys, followed streams, and managing stream markers.

See also

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun getAllStreams(userIds: List<String> = emptyList(), userLogins: List<String> = emptyList(), gameIds: List<String> = emptyList(), type: StreamType? = null, language: List<String> = emptyList()): Flow<Stream>
Link copied to clipboard
suspend fun getFollowedStreams(userId: String, cursor: String? = null, pageSize: Int? = null): Page<Stream>
Link copied to clipboard
Link copied to clipboard
suspend fun getStreamMarkers(userId: String? = null, videoId: String? = null, cursor: String? = null, pageSize: Int? = null): Page<StreamMarkerGroup>
Link copied to clipboard
suspend fun getStreams(userIds: List<String> = emptyList(), userLogins: List<String> = emptyList(), gameIds: List<String> = emptyList(), type: StreamType? = null, language: List<String> = emptyList(), cursor: String? = null, pageSize: Int? = null): Page<Stream>