5
Album
Kun Deng edited this page 2019-10-13 11:19:12 -04:00

Retrieve album metadata

URI: https://icarus-demo.com/api/v1/album/2
Method: Get
Content type: application/json
Authorization: Bearer token
Response body:

{
    "id" : 2,
    "title" : "Damn",
    "album_artist" : "Kendrick Lamar"
}

Retrieve all album metadata

URI: https://icarus-demo.com/api/v1/album/
Method: Get
Content type: application/json
Authorization: Bearer token
Response body:

[
    {
        "id" : 1,
        "title" : "I Thought I Was an Alien",
        "album_artist" : "Soko"
    },
    {
        "id" : 2,
        "title" : "Damn",
        "album_artist" : "Kendrick Lamar"
    },
    {
        "id" : 3,
        "title" : "Giving Myself To You",
        "album_artist" : "Gerald Albright"
    }
]