Search code examples
deezer

How to get all the songs of a particular artists using restapi in deezer


I am trying to get all the songs of a particular artists using deezer restapi using python.

There seems to be no api for the same. Can I only get the top songs from a particular artist ?

Is there any api supported to get all the songs of a particular artist.


Solution

  • You can get all the top songs of an artist with the /artist/{artistId}/top endpoint, described here: http://developers.deezer.com/api/artist/top

    You will just have to use the "limit" parameter so you can retrieve the count of songs that you would want.