Deezer Artist API

The Artist API from Deezer — 6 operation(s) for artist.

Operations 6

GET /artist/{id} Get an artist by id
GET /artist/{id}/top Get top tracks for an artist
GET /artist/{id}/albums List albums by an artist
GET /artist/{id}/related List related artists
GET /artist/{id}/radio Get a radio for the artist
GET /artist/{id}/playlists List playlists featuring the artist

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/deezer-artist-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

deezer-artist-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Deezer Public Album Artist API
  description: Public REST API for the Deezer music streaming service. Catalog endpoints (tracks, albums, artists, playlists, charts, genres, radios, editorial, search) are available unauthenticated; user-scoped endpoints require an OAuth 2.0 access token issued via the Deezer Connect flow.
  version: 1.0.0
servers:
- url: https://api.deezer.com
  description: Deezer public REST API
security: []
tags:
- name: Artist
paths:
  /artist/{id}:
    get:
      tags:
      - Artist
      summary: Get an artist by id
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Artist
  /artist/{id}/top:
    get:
      tags:
      - Artist
      summary: Get top tracks for an artist
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int64
      - in: query
        name: limit
        schema:
          type: integer
      responses:
        '200':
          description: Top tracks
  /artist/{id}/albums:
    get:
      tags:
      - Artist
      summary: List albums by an artist
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Albums
  /artist/{id}/related:
    get:
      tags:
      - Artist
      summary: List related artists
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Related artists
  /artist/{id}/radio:
    get:
      tags:
      - Artist
      summary: Get a radio for the artist
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Radio tracks
  /artist/{id}/playlists:
    get:
      tags:
      - Artist
      summary: List playlists featuring the artist
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Playlists
components:
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://connect.deezer.com/oauth/auth.php
          tokenUrl: https://connect.deezer.com/oauth/access_token.php
          scopes:
            basic_access: Basic profile info
            email: Get user's email address
            offline_access: Long-lived access
            manage_library: Manage user's library
            manage_community: Manage user's community
            delete_library: Delete from user's library
            listening_history: Read listening history