Skip to main content

StreamTags - Get Stream Tags

Description

Gets the list of tags for a specified stream (channel). The response has a JSON payload with a data field containing an array of tag elements.

warning

Twitch decommissioned this endpoint on 2023-07-13 in favor of the free-form tags system.

Method Definition

@Deprecated
@RequestLine("GET /streams/tags?broadcaster_id={broadcaster_id}")
@Headers("Authorization: Bearer {token}")
HystrixCommand<StreamTagList> getStreamTags(
@Param("token") String authToken,
@Param("broadcaster_id") String broadcasterId
);

Required Parameters

NameTypeDescription
authTokenstringUser or App Access Token
broadcaster_idstringID of the stream thats tags are going to be fetched

Optional Parameters

None

Code-Snippets