Apple Music Track Downloader
Pricing
from $4.99 / 1,000 results
Apple Music Track Downloader
Extract Apple Music track metadata, 30-second preview URLs, and high-quality artwork. Search by artist, song, or album name.
Pricing
from $4.99 / 1,000 results
Rating
0.0
(0)
Developer
Coding Frontned
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
0
Monthly active users
5 days ago
Last modified
Categories
Share
Apple Music Track Downloader π΅
Extract comprehensive Apple Music track metadata including 30-second preview URLs, high-resolution artwork, and full track information using the official iTunes Search API.
β οΈ Note: This actor extracts track metadata and 30-second preview clips provided by Apple's public API. Full-track downloads require Apple Music subscription and are DRM-protected β this actor cannot bypass Apple's DRM.
Features
- 30-second preview URLs β direct
.m4aaudio preview links (no DRM) - High-resolution artwork β 512Γ512 and 3000Γ3000 album art
- Rich metadata β artist, album, genre, release date, track number, duration, price
- Multi-query support β batch search multiple artists/songs
- Entity types β search for songs, albums, artists separately
- Multi-country β uses iTunes country-specific catalogs
- Deduplication β removes duplicate tracks across queries
Input Parameters
| Field | Type | Default | Description |
|---|---|---|---|
queries | array | (required) | Search terms (e.g. Ed Sheeran Shape of You, Taylor Swift) |
entity | string | "song" | Search focus: song, album, musicArtist, musicTrack |
country | string | "us" | iTunes country code |
maxTracksPerQuery | integer | 10 | Max tracks per query (1β200) |
Example INPUT.json
{"queries": ["Ed Sheeran Shape of You", "Taylor Swift"],"entity": "song","country": "us","maxTracksPerQuery": 10}
Output Fields
| Field | Type | Description |
|---|---|---|
trackId | string | iTunes track ID |
trackName | string | Song title |
artistName | string | Artist name |
albumName | string | Album name |
genre | string | Primary genre |
releaseDate | string | Release date (ISO 8601) |
releaseYear | string | Release year |
durationMs | integer | Duration in milliseconds |
durationFormatted | string | Duration as mm:ss |
trackNumber | integer | Track number in album |
trackPrice | number | Track purchase price |
currency | string | Price currency code |
**previewUrl** | string | 30-second preview .m4a URL |
artworkUrl | string | Album artwork (100Γ100) |
artworkUrl512 | string | Album artwork (512Γ512) |
artworkUrl3000 | string | Album artwork (3000Γ3000) |
trackViewUrl | string | Apple Music URL |
artistViewUrl | string | Artist page URL |
isExplicit | boolean | Explicit content flag |
country | string | iTunes country |
searchQuery | string | Query that found this track |
Preview URLs
Preview URLs are direct .m4a files hosted on Apple's CDN. They contain the first 30 seconds of the track and can be downloaded directly without authentication:
$curl -o preview.m4a "https://audio-ssl.itunes.apple.com/itunes-assets/..."
Use Cases
- Music apps β build playlist preview features
- Content creation β find music metadata for video productions
- Market research β analyze pricing across music catalogs
- Playlist curation β discover top tracks by genre/artist
- Podcast production β find royalty-free preview clips (check licensing)