Apple Music reference
Artists, albums, tracks, and catalogue search from public Apple Music pages.
Each operation below runs through the tool endpoint shown, and is available through REST, MCP, and the Better Fetch workspace.
Artist
AvailableArtist from public Apple Music surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/apple_music_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"artist","id":"262836961","max_results":10}}'Tool: apple_music_scraper
Album
AvailableAlbum from public Apple Music surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/apple_music_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"album","id":"1544491232","max_results":10}}'Tool: apple_music_scraper
Track
AvailableTrack from public Apple Music surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/apple_music_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"track","id":"1544491233"}}'Tool: apple_music_scraper
Search
AvailableSearch from public Apple Music surfaces, returned as structured data for agents, research, and monitoring workflows.
curl -sS -X POST "https://betterfetch.co/api/tools/apple_music_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input":{"mode":"search","query":"Adele","max_results":10}}'Tool: apple_music_scraper