Skip to content
This repository has been archived by the owner on Sep 10, 2020. It is now read-only.

2.7 Artiste

Sahel Lucas--Saoudi edited this page Sep 29, 2019 · 4 revisions

GET /artists/:id

Permet d'afficher l'artiste à l'id demandé. Noter que l'id d'artiste correspond à artistId dans les resultats de recherche.

Entrée

Token d'authentification nécessaire

Aucun paramètres

Sortie

Retourne un artiste

http://ubeat.herokuapp.com/unsecure/artists/3941697

{
    "resultCount": 1,
    "results": [
        {
            "wrapperType": "artist",
            "artistType": "Artist",
            "artistName": "Blink",
            "artistLinkUrl": "https://itunes.apple.com/us/artist/blink/3941697?uo=4",
            "artistId": 3941697,
            "amgArtistId": 144345,
            "primaryGenreName": "Hip-Hop/Rap",
            "primaryGenreId": 18
        }
    ]
}

GET /artists/:id/albums

Permet d'afficher les albums de l'artiste à l'id demandé. Noter que l'id d'artiste correspond à artistId dans les resultats de recherche.

Entrée

Token d'authentification nécessaire

Aucun paramètres

Sortie

Exemple: http://ubeat.herokuapp.com/unsecure/artists/3941697/albums

{
    "resultCount": 25,
    "results": [
        {
            "wrapperType": "collection",
            "collectionType": "Album",
            "artistId": "3941697",
            "collectionId": 929463779,
            "amgArtistId": 144345,
            "artistName": "Blink",
            "collectionName": "Blinkin",
            "collectionCensoredName": "Blinkin",
            "artistViewUrl": "https://itunes.apple.com/us/artist/blink/3941697?uo=4",
            "collectionViewUrl": "https://itunes.apple.com/us/album/blinkin/929463779?uo=4",
            "artworkUrl60": "https://is2-ssl.mzstatic.com/image/thumb/Music3/v4/11/53/b5/1153b57a-cdcb-b71a-4b83-dc1e93c23e18/source/60x60bb.jpg",
            "artworkUrl100": "https://is2-ssl.mzstatic.com/image/thumb/Music3/v4/11/53/b5/1153b57a-cdcb-b71a-4b83-dc1e93c23e18/source/100x100bb.jpg",
            "collectionPrice": 9.99,
            "collectionExplicitness": "notExplicit",
            "trackCount": 12,
            "copyright": "℗ 2012 Entry",
            "country": "USA",
            "currency": "USD",
            "releaseDate": "2014-10-14T07:00:00Z",
            "primaryGenreName": "Pop"
        }
    ]
}