All Projects β†’ fvdm β†’ nodejs-searchitunes

fvdm / nodejs-searchitunes

Licence: Unlicense License
Lightweight node.js module to quickly search Apple's iTunes Store for music, movies, apps, etc.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to nodejs-searchitunes

nodejs-passdock
PassDock API methods for iOS Wallet (PassBook)
Stars: ✭ 13 (-48%)
Mutual labels:  api-client, unlicense
Appdepends Ios
πŸ” ζœι›†ηƒ­ι—¨APPοΌŒεˆ—δΈΎε…Άζ‰€δΎθ΅–ε’Œδ½Ώη”¨ηš„εΌ€ζΊεΊ“γ€‚
Stars: ✭ 27 (+8%)
Mutual labels:  apps, appstore
Appstat
Get AppStore apps stats
Stars: ✭ 322 (+1188%)
Mutual labels:  apps, appstore
Itunes store transporter
Upload and manage your assets in the iTunes Store using the iTunes Store’s Transporter (iTMSTransporter).
Stars: ✭ 117 (+368%)
Mutual labels:  movies, apps
Raccoon4
APK Downloader for Google Play
Stars: ✭ 369 (+1376%)
Mutual labels:  apps, appstore
MADBike
This is the public repository of the MADBike app for iOS. Public bike rental service for BiciMAD.
Stars: ✭ 23 (-8%)
Mutual labels:  apps, appstore
ContextIO-node
[DEPRECATED] - Official Node.js client library for the Context.IO Email API
Stars: ✭ 86 (+244%)
Mutual labels:  api-client
purescript-swerve
Swerve is a library that offers a type-level DSL for describing server and client web applications. Inspired by Haskell's Servant library.
Stars: ✭ 20 (-20%)
Mutual labels:  api-client
fusionauth-typescript-client
A TypeScript client for FusionAuth
Stars: ✭ 37 (+48%)
Mutual labels:  api-client
youtube-deno
A Deno client library of the YouTube Data API.
Stars: ✭ 30 (+20%)
Mutual labels:  api-client
cv4pve-api-dotnet
Proxmox VE Client API .Net C#
Stars: ✭ 25 (+0%)
Mutual labels:  api-client
openweathermap-java-api
Java API to access openweathermap.org API
Stars: ✭ 19 (-24%)
Mutual labels:  api-client
my-linux-setup
My Fedora Linux list of installed applications and Ansible provision scripts
Stars: ✭ 40 (+60%)
Mutual labels:  apps
go-kkbox
KKBOX Open API SDK for Golang.
Stars: ✭ 16 (-36%)
Mutual labels:  api-client
oasa-telematics-api
The Athens' bus telematics API, complete with types and helper methods 🚌 🚌 🚌
Stars: ✭ 19 (-24%)
Mutual labels:  api-client
wiesbaden
Client to Access Databases from the Federal Statistical Office of Germany (DESTATIS)
Stars: ✭ 32 (+28%)
Mutual labels:  api-client
thetvdb2
Thetvdb.com API v2 Client
Stars: ✭ 33 (+32%)
Mutual labels:  api-client
siteleaf-node
Node library for Siteleaf v2 API
Stars: ✭ 14 (-44%)
Mutual labels:  api-client
radiobrowser4j
RadioBrowser Java API library
Stars: ✭ 30 (+20%)
Mutual labels:  api-client
poloniex-api
ARCHIVED --- A Go wrapper to the Poloniex API
Stars: ✭ 15 (-40%)
Mutual labels:  api-client

searchitunes

Lightweight Node.js package to quickly search the Apple iTunes Store and App Store for music, movies, apps, etc.

npm Build Status Coverage Status

Example

const searchitunes = require ('searchitunes');

// Find free Github app for iPhone in Dutch App Store
searchitunes ({
  entity: 'software',
  country: 'NL',
  term: 'github',
  limit: 1,
  price: 0,
})
  .then (console.log)
  .catch (console.error)
;

// Get one specific item by ID
searchitunes ({ id: 512939461 })
  .then (console.log)
  .catch (console.error)
;

Installation

npm i searchitunes

Interface

The module exports only one function. Arguments must be wrapped in an object. It returns a Promise.

Configuration

The parameters below can be included along with the normal API params.

param type default description
[timeout] number 5000 Wait time out in ms
[userAgent] string searchitunes.js User-Agent header
... mixed API parameters
itunes ({
  timeout: 8000,
  entity: 'software',
  term: 'github',
})

Search API

For searching in the iTunes databases you simply include the search params in your request. The function will resolve with an object.

Lookup by ID

When you wish to retrieve one specific item by its ID, include one of the ID params to use the Lookup API. The result data will be only the object with the item's details.

ID params

  • amgAlbumId
  • amgArtistId
  • amgVideoId
  • id
  • isbn
  • upc
  • trackId

When you lookup a trackId from a search response it will be automatically converted to the id parameter instead. Otherwise the API won't understand it.

searchitunes ({ id: 123456 })
  .then (console.log)
  .catch (console.error)
;

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to https://unlicense.org/

Author

Franklin | buy me a coffee

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].