Api Reference

Album Module

Operations related to albums and their tracks.

Get Album

Fetch metadata for a specific album by its ID.

const album = await deezer.album({ id: 302127 });

Get Album by UPC

Fetch metadata for a specific album by its UPC code.

const album = await deezer.album.upc({ upc: "724384960650" });
export interface Album {
  id: number;
  title: string;
  upc?: string;
  link: string;
  share: string;
  cover: string;
  cover_small: string;
  cover_medium: string;
  cover_big: string;
  cover_xl: string;
  genre_id?: number;
  genres?: {
    data: Genre[];
  };
  label?: string;
  nb_tracks?: number;
  duration?: number;
  fans?: number;
  release_date: string;
  record_type: string;
  available?: boolean;
  tracklist: string;
  explicit_lyrics?: boolean;
  explicit_content_lyrics?: number;
  explicit_content_display?: number;
  type: "album";
  artist?: Artist;
  tracks?: {
    data: Track[];
  };
}

Album Tracks

Get the list of tracks for an album.

const tracks = await deezer.album.tracks({ id: 302127, limit, index });

Album Fans

Get the list of users who are fans of an album.

const fans = await deezer.album.fans({ id: 302127, limit, index });

Album Comments

Get the list of comments left on an album.

const comments = await deezer.album.comments({ id: 302127, limit, index });
Copyright © 2026