Api Reference

Artist Module

Fetch information about artists, their top tracks, albums, and more.

Get Artist

Fetch metadata for a specific artist by their ID.

const artist = await deezer.artist({ id: 27 }); // Daft Punk
export interface Artist {
  id: number;
  name: string;
  link: string;
  share: string;
  picture: string;
  picture_small: string;
  picture_medium: string;
  picture_big: string;
  picture_xl: string;
  nb_album?: number;
  nb_fan?: number;
  radio?: boolean;
  tracklist: string;
  type: "artist";
}

Discography & Tracks

Top Tracks

Get the 5 most popular tracks for an artist.

const topTracks = await deezer.artist.top({ id: 27, limit, index });

Artist Albums

Get all albums released by an artist.

const albums = await deezer.artist.albums({ id: 27, limit, index });

Artist Playlists

Get public playlists containing songs from this artist.

const playlists = await deezer.artist.playlists({ id: 27, limit, index });

Discovery

Find artists similar to the specified one.

const related = await deezer.artist.related({ id: 27, limit, index });

Artist Radio

Get a specialized radio stream based on this artist.

const radio = await deezer.artist.radio({ id: 27, limit, index });

Community

Artist Fans

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

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

Artist Comments

Get the list of comments left on an artist's profile.

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