Deezer icon

Deezer

Access public song data via the Deezer API

Overview

This node integrates with the Deezer API to retrieve popular playlists from the Deezer music chart. It is useful for scenarios where you want to access trending or top playlists globally or regionally without needing specific playlist IDs. For example, a user might use this node to display current popular playlists in a music app dashboard or to analyze trending music collections.

Properties

Name Meaning
Return All Whether to return all available playlists or limit the number of results returned.
Offset The starting position (index) in the list of playlists from which to begin fetching data.
Limit The maximum number of playlists to return if not returning all.

Output

The node outputs an array of JSON objects representing playlists retrieved from the Deezer chart endpoint. Each object contains details about a playlist such as its ID, title, description, creator, track count, and other metadata provided by Deezer.

No binary data output is produced by this operation.

Dependencies

  • Requires an OAuth2 API credential for Deezer to authenticate requests.
  • Uses the Deezer public API endpoint https://api.deezer.com.
  • Requires n8n environment configured with the appropriate Deezer OAuth2 credentials.

Troubleshooting

  • Common issues:

    • Invalid or expired OAuth2 token may cause authentication failures.
    • Request limits or offsets out of range may result in empty responses.
    • Network connectivity issues can prevent API calls from succeeding.
  • Error messages:

    • Authentication errors typically indicate problems with the OAuth2 token; re-authenticate or refresh the token.
    • Rate limiting errors from Deezer API require waiting before retrying.
    • If no playlists are returned, verify that the offset and limit parameters are set correctly.

Links and References

Discussion