OBJECT

Radio

Twitch Radio access.

link GraphQL Schema definition

1type Radio {
2
3# Twitch Radio account information for the user.
4account: RadioAccount!
5
6# Fetch the requesting user's currently playing radio content.
7currentlyPlaying: RadioCurrentlyPlaying! @deprecated( reason: "Use 'currentRadioTrack' in 'channel' instead." )
8
9# Fetch a radio playlist by ID. Tracks can be requested here, but can be slow to
10# respond.
11playlist(id: ID!): RadioPlaylist
12
13# Fetch all, or filtered subset of, radio playlists. Cannot request track data
14# from this query.
15playlists(filter: RadioPlaylistFilter): [RadioPlaylist!]!
16
17# Fetch the requesting user's recently played radio content ids. Optionally
18# filtered by type.
19recentlyPlayed(filter: RadioRecentlyPlayedFilter): [RadioRecentlyPlayed!]!
20
21# Fetch a radio station by ID. Returns the initial queue with a token to get the
22# next tracks if no pageToken is passed.
23station(id: ID!, pageToken: String, numberOfTracks: Int): RadioStation
24
25# Fetch all radio stations.
26stations: [RadioStation!]!
27
28}