Clone
9
Artist
Kun Deng edited this page 2019-10-13 11:18:44 -04:00

Retrieve artist metadata

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

{
    "id" : 2,
    "name" : "Kendrick Lamar"
}

Retrieve all artist metadata

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

[
    {
        "id" : 1,
        "name" : "Soko"
    },
    {
        "id" : 2,
        "name" : "Kendrick Lamar"
    },
    {
        "id" : 3,
        "name" : "Gerald Albright"
    }
]