You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

itunes-api-search

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itunes-api-search

Search iTunes API

1.1.0
latest
Source
npmnpm
Version published
Weekly downloads
21
320%
Maintainers
1
Weekly downloads
 
Created
Source

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);
	});

Keywords

itunes

FAQs

Package last updated on 22 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts