itunesapi
Installion
$ npm install itunesapi
Creating an api instance
var itunes = require('itunesapi');
Searching
Searching Itunes is really simple.
You provide a term to search for and the api does the rest. However they have
a lot of small parameters you can pass to narrow the search
Basic Search
var options = {
query: 'The Amazing Spiderman 2'
}
itunes.search(options, function (results){
console.log(results);
});
#Options
var options = {
country: "US"
, limit: 20
, lang: 'en_us'
, explicit: true
, media : "software"
, entity: "all"
, attribute: "all"
}