Skip to content

feeds

RSS feed generation for artist, album, and playlist collections.

artist_feed(handle: str, db: Annotated[AsyncSession, Depends(get_db)]) -> Response

RSS feed of all public tracks by an artist, newest first.

album_feed(handle: str, slug: str, db: Annotated[AsyncSession, Depends(get_db)]) -> Response

RSS feed of tracks in an album.

playlist_feed(playlist_id: str, db: Annotated[AsyncSession, Depends(get_db)]) -> Response

RSS feed of tracks in a playlist.