Api Reference

Podcast Module

Explore podcasts and their episodes.

Get Podcast

Get metadata for a specific podcast.

const podcast = await deezer.podcast({ id: 127443 });
export interface Podcast {
  id: number;
  title: string;
  description: string;
  available: boolean;
  fans: number;
  link: string;
  share: string;
  picture: string;
  picture_small: string;
  picture_medium: string;
  picture_big: string;
  picture_xl: string;
  type: "podcast";
}

Episodes

Podcast Episodes

Get the list of episodes for a podcast.

const episodes = await deezer.podcast.episodes({ id: 127443, limit, index });

Episode Module

Get metadata for specific podcast episodes.

Get Episode

const episode = await deezer.episode({ id: 12345 });
export interface Episode {
  id: number;
  title: string;
  description: string;
  available: boolean;
  release_date: string;
  duration: number;
  link: string;
  share: string;
  picture: string;
  picture_small: string;
  picture_medium: string;
  picture_big: string;
  picture_xl: string;
  type: "episode";
}

Comment Module

Get information about specific comments.

Get Comment

const comment = await deezer.comment({ id: 12345 });
export interface Comment {
  id: number;
  text: string;
  date: number;
  author: {
    id: number;
    name: string;
    link: string;
    picture: string;
    picture_small: string;
    picture_medium: string;
    picture_big: string;
    picture_xl: string;
    type: "user";
  };
  type: "comment";
}
Copyright © 2026