Display Spotify Queue in Lovelace

I am trying to figure out how to display my Spotify Queue in my Lovelace dashboard. I’ve managed to integrate the Spotify addon and have tried through the default media player, mini-media player, I’ve managed to get playlists working on there but no display of the upcoming songs… This seems to work through Music Assistant however I am wanting it in a card in an existing dashboard, not have Music Assistant as a whole dashboard itself… Is this possible and if so could someone please point me in the right direction? Thanks :slight_smile:

Also, if possible can you get the spotify lyrics in to a card as well? I’ve got this working with genius_lyrics but would be cool to have the karoke style lyrics that you can get in the Spotify app.

1 Like

Hey :slight_smile:

Did you manage to find a solution for this?

I’m trying to get the getQueu functionality into Node Red:

This would allow to create an automation in Node Red to fill a drop-down list in your HA dashboard with all the songs in the queue.
You could even program in Node Red some automation to move in the queue to a song you selected in the drop-down list.

@quizzical @kenno7 @jcristovao
Can Node Red call HA services? If so, the SpotifyPlus integration can return this information via its get_player_queue_info service. Like so:

service: spotifyplus.get_player_queue_info
data:
  entity_id: media_player.spotifyplus_john_s

It also exposes almost every service available for the Spotify Web API endpoints.

Also note that you can call the services directly from HA Automations and Scripts.

Hope it helps!

1 Like