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

2.4.2 Recherche par album

William Fortin edited this page Aug 21, 2014 · 3 revisions

GET /search/albums

Permet de rechercher dans la base de données d'albums d'itunes.

Entrée (query parameter)

Token d'authentification nécessaire

Paramètres obligatoires

q est le paramètre de recherche dans l'URL. Par exemple pour rechercher pour l'album Back in Black l'URL sera /search/albums?q=back%20in%20black.

Paramètres facultatifs

limit donne le nombre de résultats maximums voulu. (Valeur par défault de 10) Par exemple pour rechercher pour skrillex et obtenir maximum 20 résultats l'URL sera /search?q=skrillex&limit=20.

La requête doit être URL encodée (Comment URL encoder en JavaScript)

Sortie
{
    "resultCount": 10,
    "results": [
        {
            "wrapperType": "collection",
            "collectionType": "Album",
            "artistId": 5040714,
            "collectionId": 574050396,
            "amgArtistId": 3496,
            "artistName": "AC/DC",
            "collectionName": "Back In Black",
            "collectionCensoredName": "Back In Black",
            "artistViewUrl": "https://itunes.apple.com/us/artist/ac-dc/id5040714?uo=4",
            "collectionViewUrl": "https://itunes.apple.com/us/album/back-in-black/id574050396?uo=4",
            "artworkUrl60": "http://a4.mzstatic.com/us/r30/Music/v4/18/c1/a4/18c1a4f8-3f50-9ba4-bdf9-b4148efa0564/886443673441.60x60-50.jpg",
            "artworkUrl100": "http://a5.mzstatic.com/us/r30/Music/v4/18/c1/a4/18c1a4f8-3f50-9ba4-bdf9-b4148efa0564/886443673441.100x100-75.jpg",
            "collectionPrice": 9.99,
            "collectionExplicitness": "notExplicit",
            "trackCount": 11,
            "copyright": "℗ 1980 Leidseplein Presse B.V.",
            "country": "USA",
            "currency": "USD",
            "releaseDate": "2012-11-19T08:00:00Z",
            "primaryGenreName": "Rock"
        }, {
    }]
}