├── .editorconfig ├── .github ├── DISCUSSION_TEMPLATE │ └── api-requests.yml └── dependabot.yml ├── .gitignore ├── .gitmodules ├── .markdownlint.json ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── icons │ └── logo.svg └── scss │ ├── _styles_project.scss │ └── _variables_project.scss ├── config.toml ├── content └── en │ ├── _index.md │ ├── docs │ ├── Endpoints │ │ ├── _index.md │ │ ├── addchatmessage.md │ │ ├── changepassword.md │ │ ├── createbookmark.md │ │ ├── createinternetradiostation.md │ │ ├── createplaylist.md │ │ ├── createpodcastchannel.md │ │ ├── createshare.md │ │ ├── createuser.md │ │ ├── deletebookmark.md │ │ ├── deleteinternetradiostation.md │ │ ├── deleteplaylist.md │ │ ├── deletepodcastchannel.md │ │ ├── deletepodcastepisode.md │ │ ├── deleteshare.md │ │ ├── deleteuser.md │ │ ├── download.md │ │ ├── downloadpodcastepisode.md │ │ ├── getLyricsBySongId.md │ │ ├── getTranscodeDecision.md │ │ ├── getTranscodeStream.md │ │ ├── getalbum.md │ │ ├── getalbuminfo.md │ │ ├── getalbuminfo2.md │ │ ├── getalbumlist.md │ │ ├── getalbumlist2.md │ │ ├── getartist.md │ │ ├── getartistinfo.md │ │ ├── getartistinfo2.md │ │ ├── getartists.md │ │ ├── getavatar.md │ │ ├── getbookmarks.md │ │ ├── getcaptions.md │ │ ├── getchatmessages.md │ │ ├── getcoverart.md │ │ ├── getgenres.md │ │ ├── getindexes.md │ │ ├── getinternetradiostations.md │ │ ├── getlicense.md │ │ ├── getlyrics.md │ │ ├── getmusicdirectory.md │ │ ├── getmusicfolders.md │ │ ├── getnewestpodcasts.md │ │ ├── getnowplaying.md │ │ ├── getopensubsonicextensions.md │ │ ├── getplaylist.md │ │ ├── getplaylists.md │ │ ├── getplayqueue.md │ │ ├── getplayqueuebyindex.md │ │ ├── getpodcastepisode.md │ │ ├── getpodcasts.md │ │ ├── getrandomsongs.md │ │ ├── getscanstatus.md │ │ ├── getshares.md │ │ ├── getsimilarsongs.md │ │ ├── getsimilarsongs2.md │ │ ├── getsong.md │ │ ├── getsongsbygenre.md │ │ ├── getstarred.md │ │ ├── getstarred2.md │ │ ├── gettopsongs.md │ │ ├── getuser.md │ │ ├── getusers.md │ │ ├── getvideoinfo.md │ │ ├── getvideos.md │ │ ├── hls.md │ │ ├── jukeboxcontrol.md │ │ ├── ping.md │ │ ├── refreshpodcasts.md │ │ ├── saveplayqueue.md │ │ ├── saveplayqueuebyindex.md │ │ ├── scrobble.md │ │ ├── search.md │ │ ├── search2.md │ │ ├── search3.md │ │ ├── setrating.md │ │ ├── star.md │ │ ├── startscan.md │ │ ├── stream.md │ │ ├── tokeninfo.md │ │ ├── unstar.md │ │ ├── updateinternetradiostation.md │ │ ├── updateplaylist.md │ │ ├── updateshare.md │ │ └── updateuser.md │ ├── Extensions │ │ ├── TranscodeOffset.md │ │ ├── _index.md │ │ ├── apiKeyAuth.md │ │ ├── formPost.md │ │ ├── getPodcastEpisode.md │ │ ├── indexBasedQueue.md │ │ ├── songLyrics.md │ │ ├── template.md │ │ └── transcoding.md │ ├── Openapi │ │ ├── _index.md │ │ ├── openapi-redoc.md │ │ └── openapi-swagger.md │ ├── Payloads │ │ ├── ClientInfo.md │ │ ├── CodecProfile.md │ │ ├── DirectPlayProfile.md │ │ ├── Limitation.md │ │ ├── TranscodingProfile.md │ │ └── _index.md │ ├── Responses │ │ ├── AlbumID3.md │ │ ├── AlbumID3WithSongs.md │ │ ├── ArtistID3.md │ │ ├── ArtistWithAlbumsID3.md │ │ ├── ArtistsID3.md │ │ ├── Child.md │ │ ├── Contributor.md │ │ ├── DiscTitle.md │ │ ├── NowPlayingEntry.md │ │ ├── OpenSubsonicExtension.md │ │ ├── PlayQueue.md │ │ ├── PlayQueueByIndex.md │ │ ├── PodcastChannel.md │ │ ├── PodcastEpisode.md │ │ ├── PodcastStatus.md │ │ ├── RecordLabel.md │ │ ├── ReplayGain.md │ │ ├── StreamDetails.md │ │ ├── Subsonic-response.md │ │ ├── _index.md │ │ ├── albumInfo.md │ │ ├── albumList.md │ │ ├── albumList2.md │ │ ├── artist.md │ │ ├── artistInfo.md │ │ ├── artistInfo2.md │ │ ├── bookmark.md │ │ ├── bookmarks.md │ │ ├── chatMessage.md │ │ ├── chatMessages.md │ │ ├── directory.md │ │ ├── error.md │ │ ├── genre.md │ │ ├── genres.md │ │ ├── index_.md │ │ ├── indexes.md │ │ ├── indexid3.md │ │ ├── internetRadioStation.md │ │ ├── internetRadioStations.md │ │ ├── itemDate.md │ │ ├── itemGenre.md │ │ ├── jukeboxPlaylist.md │ │ ├── jukeboxStatus.md │ │ ├── license.md │ │ ├── line.md │ │ ├── lyrics.md │ │ ├── lyricsList.md │ │ ├── musicFolder.md │ │ ├── musicFolders.md │ │ ├── newestPodcasts.md │ │ ├── nowPlaying.md │ │ ├── playlist.md │ │ ├── playlistWithSongs.md │ │ ├── playlists.md │ │ ├── podcasts.md │ │ ├── scanStatus.md │ │ ├── searchResult.md │ │ ├── searchResult2.md │ │ ├── searchResult3.md │ │ ├── share.md │ │ ├── shares.md │ │ ├── similarSongs.md │ │ ├── similarSongs2.md │ │ ├── song.md │ │ ├── songs.md │ │ ├── starred.md │ │ ├── starred2.md │ │ ├── structuredLyrics.md │ │ ├── tokeninfo.md │ │ ├── topSongs.md │ │ ├── transcodeDecision.md │ │ ├── user.md │ │ ├── users.md │ │ ├── videoInfo.md │ │ └── videos.md │ ├── _index.md │ ├── api-reference.md │ ├── opensubsonic-api.md │ ├── opensubsonic-changes.md │ ├── opensubsonic-versions.md │ └── subsonic-versions.md │ └── search.md ├── docker-compose.yaml ├── go.mod ├── go.sum ├── layouts ├── 404.html ├── partials │ └── favicons.html └── swagger │ └── baseof.html ├── netlify.toml ├── openapi ├── endpoints │ ├── addChatMessage.json │ ├── changePassword.json │ ├── createBookmark.json │ ├── createInternetRadioStation.json │ ├── createPlaylist.json │ ├── createPlaylist │ │ ├── CreatePlaylistResponse.json │ │ └── CreatePlaylistSuccessResponse.json │ ├── createPodcastChannel.json │ ├── createShare.json │ ├── createShares │ │ ├── CreateSharesResponse.json │ │ └── CreateSharesSuccessResponse.json │ ├── createUser.json │ ├── deleteBookmark.json │ ├── deleteInternetRadioStation.json │ ├── deletePlaylist.json │ ├── deletePodcastChannel.json │ ├── deletePodcastEpisode.json │ ├── deleteShare.json │ ├── deleteUser.json │ ├── download.json │ ├── downloadPodcastEpisode.json │ ├── getAlbum.json │ ├── getAlbum │ │ ├── GetAlbumResponse.json │ │ └── GetAlbumSuccessResponse.json │ ├── getAlbumInfo.json │ ├── getAlbumInfo │ │ ├── GetAlbumInfoResponse.json │ │ └── GetAlbumInfoSuccessResponse.json │ ├── getAlbumInfo2.json │ ├── getAlbumList.json │ ├── getAlbumList │ │ ├── GetAlbumListResponse.json │ │ └── GetAlbumListSuccessResponse.json │ ├── getAlbumList2.json │ ├── getAlbumList2 │ │ ├── GetAlbumList2Response.json │ │ └── GetAlbumList2SuccessResponse.json │ ├── getArtist.json │ ├── getArtist │ │ ├── GetArtistResponse.json │ │ └── GetArtistSuccessResponse.json │ ├── getArtistInfo.json │ ├── getArtistInfo │ │ ├── GetArtistInfoResponse.json │ │ └── GetArtistInfoSuccessResponse.json │ ├── getArtistInfo2.json │ ├── getArtistInfo2 │ │ ├── GetArtistInfo2Response.json │ │ └── GetArtistInfo2SuccessResponse.json │ ├── getArtists.json │ ├── getArtists │ │ ├── GetArtistsResponse.json │ │ └── GetArtistsSuccessResponse.json │ ├── getAvatar.json │ ├── getBookmarks.json │ ├── getBookmarks │ │ ├── GetBookmarksResponse.json │ │ └── GetBookmarksSuccessResponse.json │ ├── getCaptions.json │ ├── getChatMessages.json │ ├── getChatMessages │ │ ├── GetChatMessagesResponse.json │ │ └── GetChatMessagesSuccessResponse.json │ ├── getCoverArt.json │ ├── getGenres.json │ ├── getGenres │ │ ├── GetGenresResponse.json │ │ └── GetGenresSuccessResponse.json │ ├── getIndexes.json │ ├── getIndexes │ │ ├── GetIndexesResponse.json │ │ └── GetIndexesSuccessResponse.json │ ├── getInternetRadioStations.json │ ├── getInternetRadioStations │ │ ├── GetInternetRadioStationsResponse.json │ │ └── GetInternetRadioStationsSuccessResponse.json │ ├── getLicense.json │ ├── getLicense │ │ ├── GetLicenseResponse.json │ │ └── GetLicenseSuccessResponse.json │ ├── getLyrics.json │ ├── getLyrics │ │ ├── GetLyricsResponse.json │ │ └── GetLyricsSuccessResponse.json │ ├── getLyricsBySongId.json │ ├── getLyricsBySongId │ │ ├── GetLyricsBySongIdResponse.json │ │ └── GetLyricsBySongIdSuccessResponse.json │ ├── getMusicDirectory.json │ ├── getMusicDirectory │ │ ├── GetMusicDirectoryResponse.json │ │ └── GetMusicDirectorySuccessResponse.json │ ├── getMusicFolders.json │ ├── getMusicFolders │ │ ├── GetMusicFoldersResponse.json │ │ └── GetMusicFoldersSuccessResponse.json │ ├── getNewestPodcasts.json │ ├── getNewestPodcasts │ │ ├── GetNewestPodcastsResponse.json │ │ └── GetNewestPodcastsSuccessResponse.json │ ├── getNowPlaying.json │ ├── getNowPlaying │ │ ├── GetNowPlayingResponse.json │ │ └── GetNowPlayingSuccessResponse.json │ ├── getOpenSubsonicExtensions.json │ ├── getOpenSubsonicExtensions │ │ ├── GetOpenSubsonicExtensionsResponse.json │ │ └── GetOpenSubsonicExtensionsSuccessResponse.json │ ├── getPlayQueue.json │ ├── getPlayQueue │ │ ├── GetPlayQueueResponse.json │ │ └── GetPlayQueueSuccessResponse.json │ ├── getPlayQueueByIndex.json │ ├── getPlayQueueByIndex │ │ ├── GetPlayQueueByIndexResponse.json │ │ └── GetPlayQueueByIndexSuccessResponse.json │ ├── getPlaylist.json │ ├── getPlaylist │ │ ├── GetPlaylistResponse.json │ │ └── GetPlaylistSuccessResponse.json │ ├── getPlaylists.json │ ├── getPlaylists │ │ ├── GetPlaylistsResponse.json │ │ └── GetPlaylistsSuccessResponse.json │ ├── getPodcastEpisode.json │ ├── getPodcastEpisode │ │ ├── GetPodcastEpisodeResponse.json │ │ └── GetPodcastEpisodeSuccessResponse.json │ ├── getPodcasts.json │ ├── getPodcasts │ │ ├── GetPodcastsResponse.json │ │ └── GetPodcastsSuccessResponse.json │ ├── getRandomSongs.json │ ├── getRandomSongs │ │ ├── GetRandomSongsResponse.json │ │ └── GetRandomSongsSuccessResponse.json │ ├── getScanStatus.json │ ├── getScanStatus │ │ ├── GetScanStatusResponse.json │ │ └── GetScanStatusSuccessResponse.json │ ├── getShares.json │ ├── getShares │ │ ├── GetSharesResponse.json │ │ └── GetSharesSuccessResponse.json │ ├── getSimilarSongs.json │ ├── getSimilarSongs │ │ ├── GetSimilarSongsResponse.json │ │ └── GetSimilarSongsSuccessResponse.json │ ├── getSimilarSongs2.json │ ├── getSimilarSongs2 │ │ ├── GetSimilarSongs2Response.json │ │ └── GetSimilarSongs2SuccessResponse.json │ ├── getSong.json │ ├── getSong │ │ ├── GetSongResponse.json │ │ └── GetSongSuccessResponse.json │ ├── getSongsByGenre.json │ ├── getSongsByGenre │ │ ├── GetSongsByGenreResponse.json │ │ └── GetSongsByGenreSuccessResponse.json │ ├── getStarred.json │ ├── getStarred │ │ ├── GetStarredResponse.json │ │ └── GetStarredSuccessResponse.json │ ├── getStarred2.json │ ├── getStarred2 │ │ ├── GetStarred2Response.json │ │ └── GetStarred2SuccessResponse.json │ ├── getTopSongs.json │ ├── getTopSongs │ │ ├── GetTopSongsResponse.json │ │ └── GetTopSongsSuccessResponse.json │ ├── getTranscodeDecision.json │ ├── getTranscodeStream.json │ ├── getUser.json │ ├── getUser │ │ ├── GetUserResponse.json │ │ └── GetUserSuccessResponse.json │ ├── getUsers.json │ ├── getUsers │ │ ├── GetUsersResponse.json │ │ └── GetUsersSuccessResponse.json │ ├── getVideoInfo.json │ ├── getVideoInfo │ │ ├── GetVideoInfoResponse.json │ │ └── GetVideoInfoSuccessResponse.json │ ├── getVideos.json │ ├── getVideos │ │ ├── GetVideosResponse.json │ │ └── GetVideosSuccessResponse.json │ ├── hls.m3u8.json │ ├── jukeboxControl.json │ ├── jukeboxControl │ │ ├── JukeboxControlResponse.json │ │ └── JukeboxControlSuccessResponse.json │ ├── ping.json │ ├── refreshPodcasts.json │ ├── savePlayQueue.json │ ├── savePlayQueueByIndex.json │ ├── scrobble.json │ ├── search.json │ ├── search │ │ ├── SearchResponse.json │ │ └── SearchSuccessResponse.json │ ├── search2.json │ ├── search2 │ │ ├── Search2Response.json │ │ └── Search2SuccessResponse.json │ ├── search3.json │ ├── search3 │ │ ├── Search3Response.json │ │ └── Search3SuccessResponse.json │ ├── setRating.json │ ├── star.json │ ├── startScan.json │ ├── startScan │ │ ├── StartScanResponse.json │ │ └── StartScanSuccessResponse.json │ ├── stream.json │ ├── tokenInfo.json │ ├── tokenInfo │ │ ├── GetTokenInfoResponse.json │ │ └── GetTokenInfoSuccessResponse.json │ ├── unstar.json │ ├── updateInternetRadioStation.json │ ├── updatePlaylist.json │ ├── updateShare.json │ └── updateUser.json ├── openapi.json ├── responses │ ├── BinaryResponse.json │ ├── EmptySubsonicResponse.json │ └── HTTPFormPostNotSupported.json └── schemas │ ├── AlbumID3.json │ ├── AlbumID3WithSongs.json │ ├── AlbumInfo.json │ ├── AlbumList.json │ ├── AlbumList2.json │ ├── AlbumListType.json │ ├── Artist.json │ ├── ArtistID3.json │ ├── ArtistInfo.json │ ├── ArtistInfo2.json │ ├── ArtistWithAlbumsID3.json │ ├── ArtistsID3.json │ ├── Bookmark.json │ ├── Bookmarks.json │ ├── ChatMessage.json │ ├── ChatMessages.json │ ├── Child.json │ ├── ClientInfo.json │ ├── CodecProfile.json │ ├── Contributor.json │ ├── DirectPlayProfile.json │ ├── Directory.json │ ├── DiscTitle.json │ ├── Error.json │ ├── ExplicitStatus.json │ ├── GenericMediaType.json │ ├── Genre.json │ ├── Genres.json │ ├── Index.json │ ├── Indexes.json │ ├── InternetRadioStation.json │ ├── InternetRadioStations.json │ ├── ItemDate.json │ ├── ItemGenre.json │ ├── JukeboxAction.json │ ├── JukeboxPlaylist.json │ ├── JukeboxStatus.json │ ├── License.json │ ├── Limitation.json │ ├── Line.json │ ├── Lyrics.json │ ├── LyricsList.json │ ├── MediaType.json │ ├── MusicFolder.json │ ├── MusicFolders.json │ ├── NewestPodcasts.json │ ├── NowPlaying.json │ ├── NowPlayingEntry.json │ ├── OpenSubsonicExtension.json │ ├── PlayQueue.json │ ├── PlayQueueByIndex.json │ ├── Playlist.json │ ├── PlaylistWithSongs.json │ ├── Playlists.json │ ├── PodcastChannel.json │ ├── PodcastEpisode.json │ ├── PodcastStatus.json │ ├── Podcasts.json │ ├── RecordLabel.json │ ├── ReplayGain.json │ ├── ScanStatus.json │ ├── SearchResult.json │ ├── SearchResult2.json │ ├── SearchResult3.json │ ├── Share.json │ ├── Shares.json │ ├── SimilarSongs.json │ ├── SimilarSongs2.json │ ├── Songs.json │ ├── Starred.json │ ├── Starred2.json │ ├── StreamDetails.json │ ├── StructuredLyrics.json │ ├── SubsonicResponse.json │ ├── SubsonicResponse │ ├── SubsonicBaseResponse.json │ ├── SubsonicFailureResponse.json │ └── SubsonicSuccessResponse.json │ ├── TokenInfo.json │ ├── TopSongs.json │ ├── TranscodeDecision.json │ ├── TranscodeDecisionResponse.json │ ├── Transcoding.json │ ├── TranscodingProfile.json │ ├── User.json │ ├── Users.json │ ├── VideoInfo.json │ └── Videos.json ├── package.json └── static └── favicons ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── safari-pinned-tab.svg └── site.webmanifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/DISCUSSION_TEMPLATE/api-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/.github/DISCUSSION_TEMPLATE/api-requests.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/.gitmodules -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/README.md -------------------------------------------------------------------------------- /assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/assets/icons/logo.svg -------------------------------------------------------------------------------- /assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/config.toml -------------------------------------------------------------------------------- /content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/_index.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/_index.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/addchatmessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/addchatmessage.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/changepassword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/changepassword.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/createbookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/createbookmark.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/createinternetradiostation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/createinternetradiostation.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/createplaylist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/createplaylist.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/createpodcastchannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/createpodcastchannel.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/createshare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/createshare.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/createuser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/createuser.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/deletebookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/deletebookmark.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/deleteinternetradiostation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/deleteinternetradiostation.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/deleteplaylist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/deleteplaylist.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/deletepodcastchannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/deletepodcastchannel.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/deletepodcastepisode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/deletepodcastepisode.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/deleteshare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/deleteshare.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/deleteuser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/deleteuser.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/download.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/downloadpodcastepisode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/downloadpodcastepisode.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getLyricsBySongId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getLyricsBySongId.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getTranscodeDecision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getTranscodeDecision.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getTranscodeStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getTranscodeStream.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getalbum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getalbum.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getalbuminfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getalbuminfo.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getalbuminfo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getalbuminfo2.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getalbumlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getalbumlist.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getalbumlist2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getalbumlist2.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getartist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getartist.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getartistinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getartistinfo.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getartistinfo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getartistinfo2.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getartists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getartists.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getavatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getavatar.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getbookmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getbookmarks.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getcaptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getcaptions.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getchatmessages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getchatmessages.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getcoverart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getcoverart.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getgenres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getgenres.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getindexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getindexes.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getinternetradiostations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getinternetradiostations.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getlicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getlicense.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getlyrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getlyrics.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getmusicdirectory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getmusicdirectory.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getmusicfolders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getmusicfolders.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getnewestpodcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getnewestpodcasts.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getnowplaying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getnowplaying.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getopensubsonicextensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getopensubsonicextensions.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getplaylist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getplaylist.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getplaylists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getplaylists.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getplayqueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getplayqueue.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getplayqueuebyindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getplayqueuebyindex.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getpodcastepisode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getpodcastepisode.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getpodcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getpodcasts.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getrandomsongs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getrandomsongs.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getscanstatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getscanstatus.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getshares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getshares.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getsimilarsongs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getsimilarsongs.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getsimilarsongs2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getsimilarsongs2.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getsong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getsong.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getsongsbygenre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getsongsbygenre.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getstarred.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getstarred.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getstarred2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getstarred2.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/gettopsongs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/gettopsongs.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getuser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getuser.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getusers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getusers.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getvideoinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getvideoinfo.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/getvideos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/getvideos.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/hls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/hls.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/jukeboxcontrol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/jukeboxcontrol.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/ping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/ping.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/refreshpodcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/refreshpodcasts.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/saveplayqueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/saveplayqueue.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/saveplayqueuebyindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/saveplayqueuebyindex.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/scrobble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/scrobble.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/search.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/search2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/search2.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/search3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/search3.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/setrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/setrating.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/star.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/star.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/startscan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/startscan.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/stream.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/tokeninfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/tokeninfo.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/unstar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/unstar.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/updateinternetradiostation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/updateinternetradiostation.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/updateplaylist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/updateplaylist.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/updateshare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/updateshare.md -------------------------------------------------------------------------------- /content/en/docs/Endpoints/updateuser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Endpoints/updateuser.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/TranscodeOffset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/TranscodeOffset.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/_index.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/apiKeyAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/apiKeyAuth.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/formPost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/formPost.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/getPodcastEpisode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/getPodcastEpisode.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/indexBasedQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/indexBasedQueue.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/songLyrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/songLyrics.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/template.md -------------------------------------------------------------------------------- /content/en/docs/Extensions/transcoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Extensions/transcoding.md -------------------------------------------------------------------------------- /content/en/docs/Openapi/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Openapi/_index.md -------------------------------------------------------------------------------- /content/en/docs/Openapi/openapi-redoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Openapi/openapi-redoc.md -------------------------------------------------------------------------------- /content/en/docs/Openapi/openapi-swagger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Openapi/openapi-swagger.md -------------------------------------------------------------------------------- /content/en/docs/Payloads/ClientInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Payloads/ClientInfo.md -------------------------------------------------------------------------------- /content/en/docs/Payloads/CodecProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Payloads/CodecProfile.md -------------------------------------------------------------------------------- /content/en/docs/Payloads/DirectPlayProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Payloads/DirectPlayProfile.md -------------------------------------------------------------------------------- /content/en/docs/Payloads/Limitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Payloads/Limitation.md -------------------------------------------------------------------------------- /content/en/docs/Payloads/TranscodingProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Payloads/TranscodingProfile.md -------------------------------------------------------------------------------- /content/en/docs/Payloads/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Payloads/_index.md -------------------------------------------------------------------------------- /content/en/docs/Responses/AlbumID3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/AlbumID3.md -------------------------------------------------------------------------------- /content/en/docs/Responses/AlbumID3WithSongs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/AlbumID3WithSongs.md -------------------------------------------------------------------------------- /content/en/docs/Responses/ArtistID3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/ArtistID3.md -------------------------------------------------------------------------------- /content/en/docs/Responses/ArtistWithAlbumsID3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/ArtistWithAlbumsID3.md -------------------------------------------------------------------------------- /content/en/docs/Responses/ArtistsID3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/ArtistsID3.md -------------------------------------------------------------------------------- /content/en/docs/Responses/Child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/Child.md -------------------------------------------------------------------------------- /content/en/docs/Responses/Contributor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/Contributor.md -------------------------------------------------------------------------------- /content/en/docs/Responses/DiscTitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/DiscTitle.md -------------------------------------------------------------------------------- /content/en/docs/Responses/NowPlayingEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/NowPlayingEntry.md -------------------------------------------------------------------------------- /content/en/docs/Responses/OpenSubsonicExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/OpenSubsonicExtension.md -------------------------------------------------------------------------------- /content/en/docs/Responses/PlayQueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/PlayQueue.md -------------------------------------------------------------------------------- /content/en/docs/Responses/PlayQueueByIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/PlayQueueByIndex.md -------------------------------------------------------------------------------- /content/en/docs/Responses/PodcastChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/PodcastChannel.md -------------------------------------------------------------------------------- /content/en/docs/Responses/PodcastEpisode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/PodcastEpisode.md -------------------------------------------------------------------------------- /content/en/docs/Responses/PodcastStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/PodcastStatus.md -------------------------------------------------------------------------------- /content/en/docs/Responses/RecordLabel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/RecordLabel.md -------------------------------------------------------------------------------- /content/en/docs/Responses/ReplayGain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/ReplayGain.md -------------------------------------------------------------------------------- /content/en/docs/Responses/StreamDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/StreamDetails.md -------------------------------------------------------------------------------- /content/en/docs/Responses/Subsonic-response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/Subsonic-response.md -------------------------------------------------------------------------------- /content/en/docs/Responses/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/_index.md -------------------------------------------------------------------------------- /content/en/docs/Responses/albumInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/albumInfo.md -------------------------------------------------------------------------------- /content/en/docs/Responses/albumList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/albumList.md -------------------------------------------------------------------------------- /content/en/docs/Responses/albumList2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/albumList2.md -------------------------------------------------------------------------------- /content/en/docs/Responses/artist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/artist.md -------------------------------------------------------------------------------- /content/en/docs/Responses/artistInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/artistInfo.md -------------------------------------------------------------------------------- /content/en/docs/Responses/artistInfo2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/artistInfo2.md -------------------------------------------------------------------------------- /content/en/docs/Responses/bookmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/bookmark.md -------------------------------------------------------------------------------- /content/en/docs/Responses/bookmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/bookmarks.md -------------------------------------------------------------------------------- /content/en/docs/Responses/chatMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/chatMessage.md -------------------------------------------------------------------------------- /content/en/docs/Responses/chatMessages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/chatMessages.md -------------------------------------------------------------------------------- /content/en/docs/Responses/directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/directory.md -------------------------------------------------------------------------------- /content/en/docs/Responses/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/error.md -------------------------------------------------------------------------------- /content/en/docs/Responses/genre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/genre.md -------------------------------------------------------------------------------- /content/en/docs/Responses/genres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/genres.md -------------------------------------------------------------------------------- /content/en/docs/Responses/index_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/index_.md -------------------------------------------------------------------------------- /content/en/docs/Responses/indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/indexes.md -------------------------------------------------------------------------------- /content/en/docs/Responses/indexid3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/indexid3.md -------------------------------------------------------------------------------- /content/en/docs/Responses/internetRadioStation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/internetRadioStation.md -------------------------------------------------------------------------------- /content/en/docs/Responses/internetRadioStations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/internetRadioStations.md -------------------------------------------------------------------------------- /content/en/docs/Responses/itemDate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/itemDate.md -------------------------------------------------------------------------------- /content/en/docs/Responses/itemGenre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/itemGenre.md -------------------------------------------------------------------------------- /content/en/docs/Responses/jukeboxPlaylist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/jukeboxPlaylist.md -------------------------------------------------------------------------------- /content/en/docs/Responses/jukeboxStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/jukeboxStatus.md -------------------------------------------------------------------------------- /content/en/docs/Responses/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/license.md -------------------------------------------------------------------------------- /content/en/docs/Responses/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/line.md -------------------------------------------------------------------------------- /content/en/docs/Responses/lyrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/lyrics.md -------------------------------------------------------------------------------- /content/en/docs/Responses/lyricsList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/lyricsList.md -------------------------------------------------------------------------------- /content/en/docs/Responses/musicFolder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/musicFolder.md -------------------------------------------------------------------------------- /content/en/docs/Responses/musicFolders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/musicFolders.md -------------------------------------------------------------------------------- /content/en/docs/Responses/newestPodcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/newestPodcasts.md -------------------------------------------------------------------------------- /content/en/docs/Responses/nowPlaying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/nowPlaying.md -------------------------------------------------------------------------------- /content/en/docs/Responses/playlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/playlist.md -------------------------------------------------------------------------------- /content/en/docs/Responses/playlistWithSongs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/playlistWithSongs.md -------------------------------------------------------------------------------- /content/en/docs/Responses/playlists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/playlists.md -------------------------------------------------------------------------------- /content/en/docs/Responses/podcasts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/podcasts.md -------------------------------------------------------------------------------- /content/en/docs/Responses/scanStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/scanStatus.md -------------------------------------------------------------------------------- /content/en/docs/Responses/searchResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/searchResult.md -------------------------------------------------------------------------------- /content/en/docs/Responses/searchResult2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/searchResult2.md -------------------------------------------------------------------------------- /content/en/docs/Responses/searchResult3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/searchResult3.md -------------------------------------------------------------------------------- /content/en/docs/Responses/share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/share.md -------------------------------------------------------------------------------- /content/en/docs/Responses/shares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/shares.md -------------------------------------------------------------------------------- /content/en/docs/Responses/similarSongs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/similarSongs.md -------------------------------------------------------------------------------- /content/en/docs/Responses/similarSongs2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/similarSongs2.md -------------------------------------------------------------------------------- /content/en/docs/Responses/song.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/song.md -------------------------------------------------------------------------------- /content/en/docs/Responses/songs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/songs.md -------------------------------------------------------------------------------- /content/en/docs/Responses/starred.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/starred.md -------------------------------------------------------------------------------- /content/en/docs/Responses/starred2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/starred2.md -------------------------------------------------------------------------------- /content/en/docs/Responses/structuredLyrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/structuredLyrics.md -------------------------------------------------------------------------------- /content/en/docs/Responses/tokeninfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/tokeninfo.md -------------------------------------------------------------------------------- /content/en/docs/Responses/topSongs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/topSongs.md -------------------------------------------------------------------------------- /content/en/docs/Responses/transcodeDecision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/transcodeDecision.md -------------------------------------------------------------------------------- /content/en/docs/Responses/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/user.md -------------------------------------------------------------------------------- /content/en/docs/Responses/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/users.md -------------------------------------------------------------------------------- /content/en/docs/Responses/videoInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/videoInfo.md -------------------------------------------------------------------------------- /content/en/docs/Responses/videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/Responses/videos.md -------------------------------------------------------------------------------- /content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/_index.md -------------------------------------------------------------------------------- /content/en/docs/api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/api-reference.md -------------------------------------------------------------------------------- /content/en/docs/opensubsonic-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/opensubsonic-api.md -------------------------------------------------------------------------------- /content/en/docs/opensubsonic-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/opensubsonic-changes.md -------------------------------------------------------------------------------- /content/en/docs/opensubsonic-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/opensubsonic-versions.md -------------------------------------------------------------------------------- /content/en/docs/subsonic-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/docs/subsonic-versions.md -------------------------------------------------------------------------------- /content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/content/en/search.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/go.sum -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/layouts/partials/favicons.html -------------------------------------------------------------------------------- /layouts/swagger/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/layouts/swagger/baseof.html -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/netlify.toml -------------------------------------------------------------------------------- /openapi/endpoints/addChatMessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/addChatMessage.json -------------------------------------------------------------------------------- /openapi/endpoints/changePassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/changePassword.json -------------------------------------------------------------------------------- /openapi/endpoints/createBookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createBookmark.json -------------------------------------------------------------------------------- /openapi/endpoints/createInternetRadioStation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createInternetRadioStation.json -------------------------------------------------------------------------------- /openapi/endpoints/createPlaylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createPlaylist.json -------------------------------------------------------------------------------- /openapi/endpoints/createPlaylist/CreatePlaylistResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createPlaylist/CreatePlaylistResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/createPlaylist/CreatePlaylistSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createPlaylist/CreatePlaylistSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/createPodcastChannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createPodcastChannel.json -------------------------------------------------------------------------------- /openapi/endpoints/createShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createShare.json -------------------------------------------------------------------------------- /openapi/endpoints/createShares/CreateSharesResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createShares/CreateSharesResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/createShares/CreateSharesSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createShares/CreateSharesSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/createUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/createUser.json -------------------------------------------------------------------------------- /openapi/endpoints/deleteBookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/deleteBookmark.json -------------------------------------------------------------------------------- /openapi/endpoints/deleteInternetRadioStation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/deleteInternetRadioStation.json -------------------------------------------------------------------------------- /openapi/endpoints/deletePlaylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/deletePlaylist.json -------------------------------------------------------------------------------- /openapi/endpoints/deletePodcastChannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/deletePodcastChannel.json -------------------------------------------------------------------------------- /openapi/endpoints/deletePodcastEpisode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/deletePodcastEpisode.json -------------------------------------------------------------------------------- /openapi/endpoints/deleteShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/deleteShare.json -------------------------------------------------------------------------------- /openapi/endpoints/deleteUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/deleteUser.json -------------------------------------------------------------------------------- /openapi/endpoints/download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/download.json -------------------------------------------------------------------------------- /openapi/endpoints/downloadPodcastEpisode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/downloadPodcastEpisode.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbum.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbum/GetAlbumResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbum/GetAlbumResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbum/GetAlbumSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbum/GetAlbumSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumInfo.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumInfo/GetAlbumInfoResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumInfo/GetAlbumInfoResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumInfo/GetAlbumInfoSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumInfo/GetAlbumInfoSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumInfo2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumInfo2.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumList.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumList/GetAlbumListResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumList/GetAlbumListResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumList/GetAlbumListSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumList/GetAlbumListSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumList2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumList2.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumList2/GetAlbumList2Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumList2/GetAlbumList2Response.json -------------------------------------------------------------------------------- /openapi/endpoints/getAlbumList2/GetAlbumList2SuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAlbumList2/GetAlbumList2SuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtist.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtist/GetArtistResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtist/GetArtistResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtist/GetArtistSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtist/GetArtistSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtistInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtistInfo.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtistInfo/GetArtistInfoResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtistInfo/GetArtistInfoResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtistInfo/GetArtistInfoSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtistInfo/GetArtistInfoSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtistInfo2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtistInfo2.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtistInfo2/GetArtistInfo2Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtistInfo2/GetArtistInfo2Response.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtistInfo2/GetArtistInfo2SuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtistInfo2/GetArtistInfo2SuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtists.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtists/GetArtistsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtists/GetArtistsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getArtists/GetArtistsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getArtists/GetArtistsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getAvatar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getAvatar.json -------------------------------------------------------------------------------- /openapi/endpoints/getBookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getBookmarks.json -------------------------------------------------------------------------------- /openapi/endpoints/getBookmarks/GetBookmarksResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getBookmarks/GetBookmarksResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getBookmarks/GetBookmarksSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getBookmarks/GetBookmarksSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getCaptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getCaptions.json -------------------------------------------------------------------------------- /openapi/endpoints/getChatMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getChatMessages.json -------------------------------------------------------------------------------- /openapi/endpoints/getChatMessages/GetChatMessagesResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getChatMessages/GetChatMessagesResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getChatMessages/GetChatMessagesSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getChatMessages/GetChatMessagesSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getCoverArt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getCoverArt.json -------------------------------------------------------------------------------- /openapi/endpoints/getGenres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getGenres.json -------------------------------------------------------------------------------- /openapi/endpoints/getGenres/GetGenresResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getGenres/GetGenresResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getGenres/GetGenresSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getGenres/GetGenresSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getIndexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getIndexes.json -------------------------------------------------------------------------------- /openapi/endpoints/getIndexes/GetIndexesResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getIndexes/GetIndexesResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getIndexes/GetIndexesSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getIndexes/GetIndexesSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getInternetRadioStations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getInternetRadioStations.json -------------------------------------------------------------------------------- /openapi/endpoints/getInternetRadioStations/GetInternetRadioStationsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getInternetRadioStations/GetInternetRadioStationsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getInternetRadioStations/GetInternetRadioStationsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getInternetRadioStations/GetInternetRadioStationsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getLicense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLicense.json -------------------------------------------------------------------------------- /openapi/endpoints/getLicense/GetLicenseResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLicense/GetLicenseResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getLicense/GetLicenseSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLicense/GetLicenseSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getLyrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLyrics.json -------------------------------------------------------------------------------- /openapi/endpoints/getLyrics/GetLyricsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLyrics/GetLyricsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getLyrics/GetLyricsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLyrics/GetLyricsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getLyricsBySongId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLyricsBySongId.json -------------------------------------------------------------------------------- /openapi/endpoints/getLyricsBySongId/GetLyricsBySongIdResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLyricsBySongId/GetLyricsBySongIdResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getLyricsBySongId/GetLyricsBySongIdSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getLyricsBySongId/GetLyricsBySongIdSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getMusicDirectory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getMusicDirectory.json -------------------------------------------------------------------------------- /openapi/endpoints/getMusicDirectory/GetMusicDirectoryResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getMusicDirectory/GetMusicDirectoryResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getMusicDirectory/GetMusicDirectorySuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getMusicDirectory/GetMusicDirectorySuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getMusicFolders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getMusicFolders.json -------------------------------------------------------------------------------- /openapi/endpoints/getMusicFolders/GetMusicFoldersResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getMusicFolders/GetMusicFoldersResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getMusicFolders/GetMusicFoldersSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getMusicFolders/GetMusicFoldersSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getNewestPodcasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getNewestPodcasts.json -------------------------------------------------------------------------------- /openapi/endpoints/getNewestPodcasts/GetNewestPodcastsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getNewestPodcasts/GetNewestPodcastsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getNewestPodcasts/GetNewestPodcastsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getNewestPodcasts/GetNewestPodcastsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getNowPlaying.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getNowPlaying.json -------------------------------------------------------------------------------- /openapi/endpoints/getNowPlaying/GetNowPlayingResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getNowPlaying/GetNowPlayingResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getNowPlaying/GetNowPlayingSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getNowPlaying/GetNowPlayingSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getOpenSubsonicExtensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getOpenSubsonicExtensions.json -------------------------------------------------------------------------------- /openapi/endpoints/getOpenSubsonicExtensions/GetOpenSubsonicExtensionsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getOpenSubsonicExtensions/GetOpenSubsonicExtensionsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getOpenSubsonicExtensions/GetOpenSubsonicExtensionsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getOpenSubsonicExtensions/GetOpenSubsonicExtensionsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlayQueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlayQueue.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlayQueue/GetPlayQueueResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlayQueue/GetPlayQueueResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlayQueue/GetPlayQueueSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlayQueue/GetPlayQueueSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlayQueueByIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlayQueueByIndex.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlayQueueByIndex/GetPlayQueueByIndexResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlayQueueByIndex/GetPlayQueueByIndexResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlayQueueByIndex/GetPlayQueueByIndexSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlayQueueByIndex/GetPlayQueueByIndexSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlaylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlaylist.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlaylist/GetPlaylistResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlaylist/GetPlaylistResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlaylist/GetPlaylistSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlaylist/GetPlaylistSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlaylists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlaylists.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlaylists/GetPlaylistsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlaylists/GetPlaylistsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPlaylists/GetPlaylistsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPlaylists/GetPlaylistsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPodcastEpisode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPodcastEpisode.json -------------------------------------------------------------------------------- /openapi/endpoints/getPodcastEpisode/GetPodcastEpisodeResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPodcastEpisode/GetPodcastEpisodeResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPodcastEpisode/GetPodcastEpisodeSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPodcastEpisode/GetPodcastEpisodeSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPodcasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPodcasts.json -------------------------------------------------------------------------------- /openapi/endpoints/getPodcasts/GetPodcastsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPodcasts/GetPodcastsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getPodcasts/GetPodcastsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getPodcasts/GetPodcastsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getRandomSongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getRandomSongs.json -------------------------------------------------------------------------------- /openapi/endpoints/getRandomSongs/GetRandomSongsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getRandomSongs/GetRandomSongsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getRandomSongs/GetRandomSongsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getRandomSongs/GetRandomSongsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getScanStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getScanStatus.json -------------------------------------------------------------------------------- /openapi/endpoints/getScanStatus/GetScanStatusResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getScanStatus/GetScanStatusResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getScanStatus/GetScanStatusSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getScanStatus/GetScanStatusSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getShares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getShares.json -------------------------------------------------------------------------------- /openapi/endpoints/getShares/GetSharesResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getShares/GetSharesResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getShares/GetSharesSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getShares/GetSharesSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getSimilarSongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSimilarSongs.json -------------------------------------------------------------------------------- /openapi/endpoints/getSimilarSongs/GetSimilarSongsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSimilarSongs/GetSimilarSongsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getSimilarSongs/GetSimilarSongsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSimilarSongs/GetSimilarSongsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getSimilarSongs2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSimilarSongs2.json -------------------------------------------------------------------------------- /openapi/endpoints/getSimilarSongs2/GetSimilarSongs2Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSimilarSongs2/GetSimilarSongs2Response.json -------------------------------------------------------------------------------- /openapi/endpoints/getSimilarSongs2/GetSimilarSongs2SuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSimilarSongs2/GetSimilarSongs2SuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getSong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSong.json -------------------------------------------------------------------------------- /openapi/endpoints/getSong/GetSongResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSong/GetSongResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getSong/GetSongSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSong/GetSongSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getSongsByGenre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSongsByGenre.json -------------------------------------------------------------------------------- /openapi/endpoints/getSongsByGenre/GetSongsByGenreResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSongsByGenre/GetSongsByGenreResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getSongsByGenre/GetSongsByGenreSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getSongsByGenre/GetSongsByGenreSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getStarred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getStarred.json -------------------------------------------------------------------------------- /openapi/endpoints/getStarred/GetStarredResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getStarred/GetStarredResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getStarred/GetStarredSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getStarred/GetStarredSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getStarred2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getStarred2.json -------------------------------------------------------------------------------- /openapi/endpoints/getStarred2/GetStarred2Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getStarred2/GetStarred2Response.json -------------------------------------------------------------------------------- /openapi/endpoints/getStarred2/GetStarred2SuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getStarred2/GetStarred2SuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getTopSongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getTopSongs.json -------------------------------------------------------------------------------- /openapi/endpoints/getTopSongs/GetTopSongsResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getTopSongs/GetTopSongsResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getTopSongs/GetTopSongsSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getTopSongs/GetTopSongsSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getTranscodeDecision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getTranscodeDecision.json -------------------------------------------------------------------------------- /openapi/endpoints/getTranscodeStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getTranscodeStream.json -------------------------------------------------------------------------------- /openapi/endpoints/getUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getUser.json -------------------------------------------------------------------------------- /openapi/endpoints/getUser/GetUserResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getUser/GetUserResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getUser/GetUserSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getUser/GetUserSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getUsers.json -------------------------------------------------------------------------------- /openapi/endpoints/getUsers/GetUsersResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getUsers/GetUsersResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getUsers/GetUsersSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getUsers/GetUsersSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getVideoInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getVideoInfo.json -------------------------------------------------------------------------------- /openapi/endpoints/getVideoInfo/GetVideoInfoResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getVideoInfo/GetVideoInfoResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getVideoInfo/GetVideoInfoSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getVideoInfo/GetVideoInfoSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getVideos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getVideos.json -------------------------------------------------------------------------------- /openapi/endpoints/getVideos/GetVideosResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getVideos/GetVideosResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/getVideos/GetVideosSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/getVideos/GetVideosSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/hls.m3u8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/hls.m3u8.json -------------------------------------------------------------------------------- /openapi/endpoints/jukeboxControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/jukeboxControl.json -------------------------------------------------------------------------------- /openapi/endpoints/jukeboxControl/JukeboxControlResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/jukeboxControl/JukeboxControlResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/jukeboxControl/JukeboxControlSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/jukeboxControl/JukeboxControlSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/ping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/ping.json -------------------------------------------------------------------------------- /openapi/endpoints/refreshPodcasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/refreshPodcasts.json -------------------------------------------------------------------------------- /openapi/endpoints/savePlayQueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/savePlayQueue.json -------------------------------------------------------------------------------- /openapi/endpoints/savePlayQueueByIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/savePlayQueueByIndex.json -------------------------------------------------------------------------------- /openapi/endpoints/scrobble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/scrobble.json -------------------------------------------------------------------------------- /openapi/endpoints/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search.json -------------------------------------------------------------------------------- /openapi/endpoints/search/SearchResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search/SearchResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/search/SearchSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search/SearchSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/search2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search2.json -------------------------------------------------------------------------------- /openapi/endpoints/search2/Search2Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search2/Search2Response.json -------------------------------------------------------------------------------- /openapi/endpoints/search2/Search2SuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search2/Search2SuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/search3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search3.json -------------------------------------------------------------------------------- /openapi/endpoints/search3/Search3Response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search3/Search3Response.json -------------------------------------------------------------------------------- /openapi/endpoints/search3/Search3SuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/search3/Search3SuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/setRating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/setRating.json -------------------------------------------------------------------------------- /openapi/endpoints/star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/star.json -------------------------------------------------------------------------------- /openapi/endpoints/startScan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/startScan.json -------------------------------------------------------------------------------- /openapi/endpoints/startScan/StartScanResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/startScan/StartScanResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/startScan/StartScanSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/startScan/StartScanSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/stream.json -------------------------------------------------------------------------------- /openapi/endpoints/tokenInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/tokenInfo.json -------------------------------------------------------------------------------- /openapi/endpoints/tokenInfo/GetTokenInfoResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/tokenInfo/GetTokenInfoResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/tokenInfo/GetTokenInfoSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/tokenInfo/GetTokenInfoSuccessResponse.json -------------------------------------------------------------------------------- /openapi/endpoints/unstar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/unstar.json -------------------------------------------------------------------------------- /openapi/endpoints/updateInternetRadioStation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/updateInternetRadioStation.json -------------------------------------------------------------------------------- /openapi/endpoints/updatePlaylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/updatePlaylist.json -------------------------------------------------------------------------------- /openapi/endpoints/updateShare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/updateShare.json -------------------------------------------------------------------------------- /openapi/endpoints/updateUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/endpoints/updateUser.json -------------------------------------------------------------------------------- /openapi/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/openapi.json -------------------------------------------------------------------------------- /openapi/responses/BinaryResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/responses/BinaryResponse.json -------------------------------------------------------------------------------- /openapi/responses/EmptySubsonicResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/responses/EmptySubsonicResponse.json -------------------------------------------------------------------------------- /openapi/responses/HTTPFormPostNotSupported.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/responses/HTTPFormPostNotSupported.json -------------------------------------------------------------------------------- /openapi/schemas/AlbumID3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/AlbumID3.json -------------------------------------------------------------------------------- /openapi/schemas/AlbumID3WithSongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/AlbumID3WithSongs.json -------------------------------------------------------------------------------- /openapi/schemas/AlbumInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/AlbumInfo.json -------------------------------------------------------------------------------- /openapi/schemas/AlbumList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/AlbumList.json -------------------------------------------------------------------------------- /openapi/schemas/AlbumList2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/AlbumList2.json -------------------------------------------------------------------------------- /openapi/schemas/AlbumListType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/AlbumListType.json -------------------------------------------------------------------------------- /openapi/schemas/Artist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Artist.json -------------------------------------------------------------------------------- /openapi/schemas/ArtistID3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ArtistID3.json -------------------------------------------------------------------------------- /openapi/schemas/ArtistInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ArtistInfo.json -------------------------------------------------------------------------------- /openapi/schemas/ArtistInfo2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ArtistInfo2.json -------------------------------------------------------------------------------- /openapi/schemas/ArtistWithAlbumsID3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ArtistWithAlbumsID3.json -------------------------------------------------------------------------------- /openapi/schemas/ArtistsID3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ArtistsID3.json -------------------------------------------------------------------------------- /openapi/schemas/Bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Bookmark.json -------------------------------------------------------------------------------- /openapi/schemas/Bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Bookmarks.json -------------------------------------------------------------------------------- /openapi/schemas/ChatMessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ChatMessage.json -------------------------------------------------------------------------------- /openapi/schemas/ChatMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ChatMessages.json -------------------------------------------------------------------------------- /openapi/schemas/Child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Child.json -------------------------------------------------------------------------------- /openapi/schemas/ClientInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ClientInfo.json -------------------------------------------------------------------------------- /openapi/schemas/CodecProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/CodecProfile.json -------------------------------------------------------------------------------- /openapi/schemas/Contributor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Contributor.json -------------------------------------------------------------------------------- /openapi/schemas/DirectPlayProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/DirectPlayProfile.json -------------------------------------------------------------------------------- /openapi/schemas/Directory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Directory.json -------------------------------------------------------------------------------- /openapi/schemas/DiscTitle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/DiscTitle.json -------------------------------------------------------------------------------- /openapi/schemas/Error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Error.json -------------------------------------------------------------------------------- /openapi/schemas/ExplicitStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ExplicitStatus.json -------------------------------------------------------------------------------- /openapi/schemas/GenericMediaType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/GenericMediaType.json -------------------------------------------------------------------------------- /openapi/schemas/Genre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Genre.json -------------------------------------------------------------------------------- /openapi/schemas/Genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Genres.json -------------------------------------------------------------------------------- /openapi/schemas/Index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Index.json -------------------------------------------------------------------------------- /openapi/schemas/Indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Indexes.json -------------------------------------------------------------------------------- /openapi/schemas/InternetRadioStation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/InternetRadioStation.json -------------------------------------------------------------------------------- /openapi/schemas/InternetRadioStations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/InternetRadioStations.json -------------------------------------------------------------------------------- /openapi/schemas/ItemDate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ItemDate.json -------------------------------------------------------------------------------- /openapi/schemas/ItemGenre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ItemGenre.json -------------------------------------------------------------------------------- /openapi/schemas/JukeboxAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/JukeboxAction.json -------------------------------------------------------------------------------- /openapi/schemas/JukeboxPlaylist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/JukeboxPlaylist.json -------------------------------------------------------------------------------- /openapi/schemas/JukeboxStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/JukeboxStatus.json -------------------------------------------------------------------------------- /openapi/schemas/License.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/License.json -------------------------------------------------------------------------------- /openapi/schemas/Limitation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Limitation.json -------------------------------------------------------------------------------- /openapi/schemas/Line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Line.json -------------------------------------------------------------------------------- /openapi/schemas/Lyrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Lyrics.json -------------------------------------------------------------------------------- /openapi/schemas/LyricsList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/LyricsList.json -------------------------------------------------------------------------------- /openapi/schemas/MediaType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/MediaType.json -------------------------------------------------------------------------------- /openapi/schemas/MusicFolder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/MusicFolder.json -------------------------------------------------------------------------------- /openapi/schemas/MusicFolders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/MusicFolders.json -------------------------------------------------------------------------------- /openapi/schemas/NewestPodcasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/NewestPodcasts.json -------------------------------------------------------------------------------- /openapi/schemas/NowPlaying.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/NowPlaying.json -------------------------------------------------------------------------------- /openapi/schemas/NowPlayingEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/NowPlayingEntry.json -------------------------------------------------------------------------------- /openapi/schemas/OpenSubsonicExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/OpenSubsonicExtension.json -------------------------------------------------------------------------------- /openapi/schemas/PlayQueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/PlayQueue.json -------------------------------------------------------------------------------- /openapi/schemas/PlayQueueByIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/PlayQueueByIndex.json -------------------------------------------------------------------------------- /openapi/schemas/Playlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Playlist.json -------------------------------------------------------------------------------- /openapi/schemas/PlaylistWithSongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/PlaylistWithSongs.json -------------------------------------------------------------------------------- /openapi/schemas/Playlists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Playlists.json -------------------------------------------------------------------------------- /openapi/schemas/PodcastChannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/PodcastChannel.json -------------------------------------------------------------------------------- /openapi/schemas/PodcastEpisode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/PodcastEpisode.json -------------------------------------------------------------------------------- /openapi/schemas/PodcastStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/PodcastStatus.json -------------------------------------------------------------------------------- /openapi/schemas/Podcasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Podcasts.json -------------------------------------------------------------------------------- /openapi/schemas/RecordLabel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/RecordLabel.json -------------------------------------------------------------------------------- /openapi/schemas/ReplayGain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ReplayGain.json -------------------------------------------------------------------------------- /openapi/schemas/ScanStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/ScanStatus.json -------------------------------------------------------------------------------- /openapi/schemas/SearchResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SearchResult.json -------------------------------------------------------------------------------- /openapi/schemas/SearchResult2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SearchResult2.json -------------------------------------------------------------------------------- /openapi/schemas/SearchResult3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SearchResult3.json -------------------------------------------------------------------------------- /openapi/schemas/Share.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Share.json -------------------------------------------------------------------------------- /openapi/schemas/Shares.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Shares.json -------------------------------------------------------------------------------- /openapi/schemas/SimilarSongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SimilarSongs.json -------------------------------------------------------------------------------- /openapi/schemas/SimilarSongs2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SimilarSongs2.json -------------------------------------------------------------------------------- /openapi/schemas/Songs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Songs.json -------------------------------------------------------------------------------- /openapi/schemas/Starred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Starred.json -------------------------------------------------------------------------------- /openapi/schemas/Starred2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Starred2.json -------------------------------------------------------------------------------- /openapi/schemas/StreamDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/StreamDetails.json -------------------------------------------------------------------------------- /openapi/schemas/StructuredLyrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/StructuredLyrics.json -------------------------------------------------------------------------------- /openapi/schemas/SubsonicResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SubsonicResponse.json -------------------------------------------------------------------------------- /openapi/schemas/SubsonicResponse/SubsonicBaseResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SubsonicResponse/SubsonicBaseResponse.json -------------------------------------------------------------------------------- /openapi/schemas/SubsonicResponse/SubsonicFailureResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SubsonicResponse/SubsonicFailureResponse.json -------------------------------------------------------------------------------- /openapi/schemas/SubsonicResponse/SubsonicSuccessResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/SubsonicResponse/SubsonicSuccessResponse.json -------------------------------------------------------------------------------- /openapi/schemas/TokenInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/TokenInfo.json -------------------------------------------------------------------------------- /openapi/schemas/TopSongs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/TopSongs.json -------------------------------------------------------------------------------- /openapi/schemas/TranscodeDecision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/TranscodeDecision.json -------------------------------------------------------------------------------- /openapi/schemas/TranscodeDecisionResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/TranscodeDecisionResponse.json -------------------------------------------------------------------------------- /openapi/schemas/Transcoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Transcoding.json -------------------------------------------------------------------------------- /openapi/schemas/TranscodingProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/TranscodingProfile.json -------------------------------------------------------------------------------- /openapi/schemas/User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/User.json -------------------------------------------------------------------------------- /openapi/schemas/Users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Users.json -------------------------------------------------------------------------------- /openapi/schemas/VideoInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/VideoInfo.json -------------------------------------------------------------------------------- /openapi/schemas/Videos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/openapi/schemas/Videos.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/package.json -------------------------------------------------------------------------------- /static/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/browserconfig.xml -------------------------------------------------------------------------------- /static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/favicon.ico -------------------------------------------------------------------------------- /static/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /static/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /static/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /static/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /static/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /static/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /static/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensubsonic/open-subsonic-api/HEAD/static/favicons/site.webmanifest --------------------------------------------------------------------------------