Skip to content
Kun Deng edited this page Jul 19, 2019 · 9 revisions

Retrieving artist

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",
    "song_count": 1
}

Retrieving artists

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

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

Clone this wiki locally