Wednesday 31 May 2017

Get multiple tracks from Spotify API using ISRC code



There is a solution to fetch a single track by querying the Spotify search API with ISRC.



But, I didn't find any way to fetch multiple tracks for the same.



I tried these ways but nothing worked:



Comma-separated: https://api.spotify.com/v1/search?type=track&q=isrc:USEE10001993,USEE10001994



Plus-separated: https://api.spotify.com/v1/search?type=track&q=isrc:USEE10001993+USEE10001994



Is there any way to achieve this?


Answer



This request work fine for me: https://api.spotify.com/v1/search?type=track&q=isrc:USWB11802164+OR+isrc:DEMA61301103


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...