1.1.0 • Published 8 years ago

itunes-api-search v1.1.0

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

iTunes API Search

Welcome to the iTunes API Search.

With this module you can make any search to iTunes API.

  1. You can search for any iTunes media:
    • movie
    • podcast
    • music
    • musicVideo
    • audiobook
    • shortFilm
    • tvShow
    • software
    • ebook
    • all
  2. Search for any attribute available on the iTunes API
    • country
    • media
    • entity
    • attribute
    • limit
    • lang
    • version
    • explicit
  3. Get all result in Objects
  4. 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);
	});
1.1.0

8 years ago

1.0.4

8 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago