# Deezer Artist Search Scraper

**Use case:** 

Find artists on Deezer by name and rank them by popularity. Extract artist profiles and catalog metadata as clean structured JSON.

## Input

```json
{
  "query": "daft punk",
  "searchType": "artist",
  "order": "RANKING",
  "fetchDetails": false,
  "maxItems": 5
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "id": {
    "label": "Id",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "titleShort": {
    "label": "Title Short",
    "format": "text"
  },
  "titleVersion": {
    "label": "Title Version",
    "format": "text"
  },
  "isrc": {
    "label": "Isrc",
    "format": "text"
  },
  "duration": {
    "label": "Duration",
    "format": "number"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "explicit": {
    "label": "Explicit",
    "format": "text"
  },
  "explicitContentLyrics": {
    "label": "Explicit Content Lyrics",
    "format": "number"
  },
  "explicitContentCover": {
    "label": "Explicit Content Cover",
    "format": "number"
  },
  "preview": {
    "label": "Preview",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Deezer Music Catalog Scraper](https://apify.com/parseforge/deezer-music-catalog-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/deezer-music-catalog-scraper) to learn more, explore other use cases, and run it yourself.