Reputation: 69
In the Deezer API, is it possible to search for tracks in a specific playlist? Something like http://api.deezer.com/search/track?playlist=785141981&q=felix.
Upvotes: 0
Views: 329
Reputation: 4704
I don't think you can.
You will have to load the playlist with http://api.deezer.com/playlist/785141981
, then look for the tracks.data
property.
You will have all the tracks for this playlist then you can do the search manually.
Upvotes: 1