Api Reference

Genre Module

Explore music genres and related content.

Get Genre

Get metadata for a specific genre.

const genre = await deezer.genre({ id: 132 }); // Pop
export interface Genre {
  id: number;
  name: string;
  picture: string;
  picture_small: string;
  picture_medium: string;
  picture_big: string;
  picture_xl: string;
  type: "genre";
}

Genre Artists

Find artists associated with a genre.

const artists = await deezer.genre.artists({ id: 132, limit, index });

Genre Radios

Find radios associated with a genre.

const radios = await deezer.genre.radios({ id: 132, limit, index });

Genre Podcasts

Find podcasts associated with a genre.

const podcasts = await deezer.genre.podcasts({ id: 132, limit, index });

Radio Module

Access radio stations and their tracks.

Get Radio

Get metadata for a specific radio station.

const radio = await deezer.radio({ id: 6 });
export interface Radio {
  id: number;
  title: string;
  picture: string;
  picture_small: string;
  picture_medium: string;
  picture_big: string;
  picture_xl: string;
  tracklist: string;
  type: "radio";
}

Discovery

Top Radios

Get the top radio stations.

const tags = await deezer.radio.top({ limit, index });

Radio Genres

Get the list of radio genres.

const genres = await deezer.radio.genres({ limit, index });

Radio Lists

Get groups of radios.

const lists = await deezer.radio.lists({ limit, index });

Radio Tracks

Get tracks played on a specific radio station.

const tracks = await deezer.radio.tracks({ id: 6, limit, index });
Copyright © 2026