Endpoints
Info
Returns information about the API including branding and details
Response Body
application/json
curl -X GET "http://localhost:8080/api"{
"branding": {
"name": "My Music Service",
"email": "contact@example.com",
"short": "MMS",
"logo": "https://example.com/logo.png",
"theme": "#0066cc",
"links": {
"homepage": "https://example.com",
"privacyStatement": "https://example.com/privacy",
"donate": null
}
},
"details": {
"version": "1.0.0",
"capabilities": {
"search": true,
"songs": true,
"streaming": true,
"filters": false,
"artists": true,
"albums": false,
"playlists": false,
"lyrics": false,
"popular": false,
"similar": false,
"open_music_metadata": false,
"radio": false,
"random": false,
"list": false,
"upload": false,
"favorite": false,
"rate": false,
"edit": false
}
}
}