DistributeApp LogoDistributeProject
DistributorAlbumsIdSongs

List songs in album

Returns all songs in an album.

GET
/albums/{id}/songs

Path Parameters

id*string

Album ID (UUID)

Response Body

application/json

application/json

application/json

curl -X GET "https://loading/api/albums/string/songs"
{
  "songs": [
    {
      "album": {
        "artist_name": "string",
        "created_at": "string",
        "id": "string",
        "release_date": "string",
        "songs": [
          {
            "album": {},
            "album_id": "string",
            "artists": [
              {
                "albums": [
                  {
                    "artist_name": "string",
                    "created_at": "string",
                    "id": "string",
                    "release_date": "string",
                    "songs": [],
                    "title": "string"
                  }
                ],
                "created_at": "string",
                "id": "string",
                "identifiers": [
                  {
                    "artist_id": "string",
                    "id": "string",
                    "identifier": "string"
                  }
                ],
                "name": "string"
              }
            ],
            "created_at": "string",
            "id": "00000000-0000-0000-0000-000000000000",
            "title": "Song Title"
          }
        ],
        "title": "string"
      },
      "album_id": "string",
      "artists": [
        {
          "albums": [
            {
              "artist_name": "string",
              "created_at": "string",
              "id": "string",
              "release_date": "string",
              "songs": [
                {
                  "album": {
                    "artist_name": "string",
                    "created_at": "string",
                    "id": "string",
                    "release_date": "string",
                    "songs": [],
                    "title": "string"
                  },
                  "album_id": "string",
                  "artists": [],
                  "created_at": "string",
                  "id": "00000000-0000-0000-0000-000000000000",
                  "title": "Song Title"
                }
              ],
              "title": "string"
            }
          ],
          "created_at": "string",
          "id": "string",
          "identifiers": [
            {
              "artist_id": "string",
              "id": "string",
              "identifier": "string"
            }
          ],
          "name": "string"
        }
      ],
      "created_at": "string",
      "id": "00000000-0000-0000-0000-000000000000",
      "title": "Song Title"
    }
  ]
}
{
  "error": "Validation failed"
}
{
  "error": "Validation failed"
}