Platform · Music & audio

Apple Music

Artists, albums, songs and search.

Endpoints
5
Base price
1 cr
Source
Provider

Core

Profile

1 credit

Get a public profile by handle.

GET/v1/apple_music/profileProfile
handlerequiredUsername without the @.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/apple_music/profile \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=https://music.apple.com/us/artist/taylor-swift/159260351"

Transcripts and media

Collection

1 credit

One playlist, album or podcast.

GET/v1/apple_music/collectionCollection
idrequiredPlaylist, album or podcast id, or its URL.
curl -G https://api.crawlfeed.dev/v1/apple_music/collection \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Music and audio

Collection tracks

1 credit

The tracks in a playlist or album.

GET/v1/apple_music/collection/tracksTrack[]
idrequiredPlaylist or album id, or its URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
curl -G https://api.crawlfeed.dev/v1/apple_music/collection/tracks \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Track

1 credit

One track or sound.

GET/v1/apple_music/trackTrack
idrequiredTrack or sound id, or its URL.
curl -G https://api.crawlfeed.dev/v1/apple_music/track \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.