Logo

Docs

Endpoints

Get API info

GET
/

Query Parameters

lang?string

Preferred locale string such as en-US. Implementations may ignore localization, but en-US is the recommended default and fallback.

Default"en-US"

Response Body

application/json

application/json

curl -X GET "http://localhost:8080/api"
{
  "data": {
    "branding": {
      "name": "string",
      "email": "user@example.com",
      "logo": "http://example.com",
      "short_name": "string",
      "theme": "string",
      "homepage": "http://example.com"
    },
    "openmusic": {
      "version": "string",
      "capabilities": {
        "info": true,
        "search": true,
        "song": true,
        "download": true,
        "stream": true,
        "albums": true,
        "artists": true,
        "playlists": true,
        "stations": true,
        "sort": true,
        "lyrics": true
      }
    }
  }
}
{
  "error": {
    "code": 0,
    "title": "string",
    "message": "string",
    "trace_id": "string"
  }
}