# Deezer Album Search Scraper

**Use case:** 

Search Deezer for albums by keyword, ranked by popularity. Pull album titles, artists and release metadata in structured JSON.

## Input

```json
{
  "query": "queen",
  "searchType": "album",
  "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.