Supported Music Services
MusicAPI provides comprehensive integration support across multiple music streaming platforms, offering both public and authenticated endpoints for different use cases.
Public Endpoint Coverage
Public endpoints support 19 music services and provide access to general music content without user authentication:
Authenticated Endpoint Coverage
Private endpoints support 12 music services and provide access to user-specific data with proper authentication:
API Introspection
Use the introspection endpoint to programmatically retrieve the current list of supported services and validate your integration configuration:
Introspection Request
curl "https://api.musicapi.com/search/introspection" \
-H 'Content-Type: application/json; charset=utf-8' \
-H 'Authorization: Token YOUR_CLIENT_ID'
Introspection Response
{
"sources": [
"amazonMusic",
"appleMusic",
"deezer",
"pandora",
"soundCloud",
"spotify",
"tidal",
"youtube",
"youtubeMusic",
"napster",
"qobuz",
"qqMusic",
"yandexMusic",
"vkMusic",
"zvuk",
"jiosaavn",
"boomplay",
"audiomack"
],
"authSources": [
"spotify",
"appleMusic",
"youtube",
"tidal",
"boomplay",
"amazonMusic",
"napster",
"deezer",
"soundCloud",
"audiomack"
],
"types": ["track", "album"]
}