Help Wizard

Step 1

NEXT STEP

Who Me Too'd this topic

Critical bug in search API since today or yesterday?

Hello!

Looks like combining year and any other query parameter in search API (https://api.spotify.com/v1/search) while asking for "tracks" stopped working today or yesterday. Any known problems or is it planned (but sudden for us poor devs) change?


Example query: https://api.spotify.com/v1/search?query=genre:"ambient" AND year:"2021"&type=track&market=US&offset=0&limit=50

Expected result: list of tracks

 

Actual result: 
{
"tracks" : {
"href" : "https://api.spotify.com/v1/search?query=genre%3A%22ambient%22+AND+year%3A%222021%22&type=track&marke...",
"items" : [ ],
"limit" : 50,
"next" : null,
"offset" : 0,
"previous" : null,
"total" : 0
}
}

Who Me Too'd this topic