Deezer Music Data Scraper avatar

Deezer Music Data Scraper

Pricing

Pay per usage

Go to Apify Store
Deezer Music Data Scraper

Deezer Music Data Scraper

Search and extract music data from Deezer — tracks, artists, albums, charts, and top songs. No API key required.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Monkey Coder

Monkey Coder

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Extract music data from Deezer's public API — search for tracks, artists, and albums, get detailed artist profiles with top songs, full album tracklists, and current chart/trending data. No API key required.

🎵 Features

  • Search Tracks — Find songs by title, artist name, or keywords
  • Search Artists — Discover artists matching your query
  • Search Albums — Find albums by title or artist
  • Artist Detail — Get full artist profile with fan count and top 10 tracks
  • Album Detail — Get complete album info with full tracklist
  • Chart / Trending — Fetch currently trending tracks on Deezer

🔧 How It Works

This Actor uses the Deezer public API which is completely free and requires no authentication. It supports pagination for large result sets and handles rate limiting automatically.

📋 How to Use

  1. Select a mode from the dropdown:

    • Search Tracks — Search for songs
    • Search Artists — Search for artists
    • Search Albums — Search for albums
    • Artist Detail — Get details for a specific artist (provide Artist ID)
    • Album Detail — Get details for a specific album (provide Album ID)
    • Chart / Trending — Get current chart tracks
  2. Enter your search query (for search modes) or provide an ID (for detail modes)

  3. Set max results — Control how many items to return (1-500)

  4. Run the Actor and download your data as JSON, CSV, or Excel

📊 Sample Output (Search Tracks)

{
"type": "track",
"track_id": 1109731,
"title": "Lose Yourself",
"title_short": "Lose Yourself",
"duration_seconds": 326,
"rank": 939185,
"explicit_lyrics": true,
"preview_url": "https://cdnt-preview.dzcdn.net/...",
"deezer_url": "https://www.deezer.com/track/1109731",
"artist_id": 13,
"artist_name": "Eminem",
"album_id": 119606,
"album_title": "Curtain Call: The Hits",
"album_cover": "https://cdn-images.dzcdn.net/...",
"fetched_at": "2024-01-15T10:30:00.000000"
}

📊 Sample Output (Artist Detail)

{
"type": "artist",
"artist_id": 13,
"artist_name": "Eminem",
"deezer_url": "https://www.deezer.com/artist/13",
"nb_album": 67,
"nb_fan": 18858307,
"top_tracks": [
{
"title": "Mockingbird",
"duration_seconds": 251,
"rank": 964816,
"preview_url": "https://cdnt-preview.dzcdn.net/..."
}
],
"fetched_at": "2024-01-15T10:30:00.000000"
}

💡 Tips

  • Finding Artist/Album IDs: Use search modes first to discover IDs, then use detail modes for comprehensive data
  • Deezer URLs contain IDs: https://www.deezer.com/artist/13 → Artist ID is 13
  • Rate Limits: The Actor handles Deezer's rate limiting automatically (50 requests per 5 seconds)
  • No API Key Needed: This Actor uses Deezer's public API which is free and requires no authentication