Deezer icon

Deezer

Access public song data via the Deezer API

Overview

This node integrates with the Deezer API to retrieve public podcast data. Specifically, the "Podcast" resource with the "Get" operation allows users to fetch detailed information about a specific podcast by its unique Resource ID. This is useful for workflows that need to access metadata about podcasts such as title, description, publisher, and other related details.

Practical examples include:

  • Automatically fetching podcast details to display in a content management system.
  • Enriching user profiles or recommendations with podcast metadata.
  • Integrating podcast information into marketing or analytics platforms.

Properties

Name Meaning
Resource ID The unique identifier of the podcast to retrieve. This is required to specify which podcast to get.

Output

The node outputs JSON data representing the podcast's details as returned by the Deezer API. This typically includes fields such as podcast title, description, publisher, number of episodes, and other metadata associated with the podcast.

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.
  • The node internally obtains an access token via the provided credentials before making API calls.

Troubleshooting

  • Common issues:

    • Invalid or missing Resource ID will cause the API call to fail.
    • Expired or invalid OAuth2 credentials may result in authentication errors.
    • Network connectivity problems can prevent successful API requests.
  • Error messages:

    • Errors from the Deezer API (e.g., "Resource not found") indicate incorrect or non-existent podcast IDs.
    • Authentication errors suggest checking the configured OAuth2 credentials.
    • Rate limiting or quota exceeded errors require waiting or adjusting usage.

To resolve these, verify the Resource ID correctness, ensure valid and up-to-date OAuth2 credentials, and check network connectivity.

Links and References

Discussion