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

Retrieve genre metadata

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

{
    "id" : 2,
    "genre" : "Hip-Hop",
    "song_count" : 2
}

Retrieve genre metadata

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

[
    {
        "id" : 1,
        "genre" : "Indie",
        "song_count" : 1
    },
    {
        "id" : 2,
        "genre" : "Hip-Hop",
        "song_count" : 2
    },
    {
        "id" : 3,
        "genre" : "Jazz",
        "song_count" : 1
    }
]

Clone this wiki locally