Platform · Music & audio
Apple Music
Artists, albums, songs and search.
- Endpoints
- 5
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/apple_music/profile | Profile | 1 |
| GET /v1/apple_music/search | SearchResult[] | 1 |
| GET /v1/apple_music/collection | Collection | 1 |
| GET /v1/apple_music/collection/tracks | Track[] | 1 |
| GET /v1/apple_music/track | Track | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: 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"Search
1 creditSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/apple_music/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=lofi"Transcripts and media
Collection
1 creditOne playlist, album or podcast.
| id | required | Playlist, 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 creditThe tracks in a playlist or album.
| id | required | Playlist or album id, or its URL. |
| cursor | optional | From 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 creditOne track or sound.
| id | required | Track 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.