itunes-api-search
v1.1.0
Published
Search iTunes API
Downloads
20
Readme
iTunes API Search
Welcome to the iTunes API Search.
With this module you can make any search to iTunes API.
- You can search for any iTunes media:
- movie
- podcast
- music
- musicVideo
- audiobook
- shortFilm
- tvShow
- software
- ebook
- all
- Search for any attribute available on the iTunes API
- country
- media
- entity
- attribute
- limit
- lang
- version
- explicit
- Get all result in Objects
- Fast and Safe
Install
$ npm install itunes-api-search
How to use
var itunesApiSearch = require('itunes-api-search');
// itunesApiSearch.search(term, options, callback)
itunesApiSearch.search('rock',{
entity: 'music',
limit: 100, // max 200
country: 'BR'
}, function (err, res) {
if (err) {
console.log(err);
return;
}
console.log(res);
});