EbbLabs/python-tidal

Home page retrieved with the current method is the default one

Closed this issue · 4 comments

From some time the home page is the default one that you see on tidal.com without being logged in.

It looks like now they are using this https://tidal.com/v2/home/feed/static

The explore page is still using the same endpoint

I have tried fixing it, but it's not so easy because all the v2 page json is different. One thing I found out is that now to get the home page it needs an additional header: headers["x-tidal-client-version"] = "2025.5.8"

I went to listen.tidal.com on firefox and looked in the network inspector. It still fetches the old home page with the v1 endpoint, but if i look at the actual json data it is the generic home page (the same you have without logging in) then it fetches the home page with the new endpoint:

Image

First the old, then the new one:
Image

Fixed in #353