Socket
Socket
Sign inDemoInstall

itunes-api-search

Package Overview
Dependencies
49
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    itunes-api-search

Search iTunes API


Version published
Weekly downloads
1
Maintainers
1
Install size
4.49 MB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 22 Mar 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc