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

2.4.4 Recherche par chanson

gamachexx edited this page Mar 14, 2019 · 1 revision

GET /search/tracks

Permet de rechercher dans la base de données de chansons 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 The Final Countdown l'URL sera /search/tracks?q=The%20final%20countdown.

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": "track",
            "kind": "song",
            "artistId": 461932,
            "collectionId": 196480323,
            "trackId": 196480329,
            "artistName": "Europe",
            "collectionName": "The Final Countdown",
            "trackName": "The Final Countdown",
            "collectionCensoredName": "The Final Countdown",
            "trackCensoredName": "The Final Countdown",
            "artistViewUrl": "https://itunes.apple.com/us/artist/europe/id461932?uo=4",
            "collectionViewUrl": "https://itunes.apple.com/us/album/the-final-countdown/id196480323?i=196480329&uo=4",
            "trackViewUrl": "https://itunes.apple.com/us/album/the-final-countdown/id196480323?i=196480329&uo=4",
            "previewUrl": "http://a1815.phobos.apple.com/us/r1000/101/Music/70/f0/fd/mzm.hhpjhkpl.aac.p.m4a",
            "artworkUrl30": "http://a5.mzstatic.com/us/r30/Music/fc/4c/f5/mzi.jpmevzoi.30x30-50.jpg",
            "artworkUrl60": "http://a4.mzstatic.com/us/r30/Music/fc/4c/f5/mzi.jpmevzoi.60x60-50.jpg",
            "artworkUrl100": "http://a3.mzstatic.com/us/r30/Music/fc/4c/f5/mzi.jpmevzoi.100x100-75.jpg",
            "collectionPrice": 9.99,
            "trackPrice": 1.29,
            "releaseDate": "1988-09-16T07:00:00Z",
            "collectionExplicitness": "notExplicit",
            "trackExplicitness": "notExplicit",
            "discCount": 1,
            "discNumber": 1,
            "trackCount": 13,
            "trackNumber": 1,
            "trackTimeMillis": 310333,
            "country": "USA",
            "currency": "USD",
            "primaryGenreName": "Rock",
            "radioStationUrl": "https://itunes.apple.com/station/idra.196480329"
        }, {
    }]
}