
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
app-store-scraper-l
Advanced tools
Node.js module to scrape application data from the iTunes/Mac App Store. The goal is to provide an interface as close as possible to the google-play-scraper module.
npm install app-store-scraper
Available methods:
Retrieves the full detail of an application. Options:
id
: the iTunes "trackId" of the app, for example 553834731
for Candy Crush Saga. Either this or the appId
should be provided.appId
: the iTunes "bundleId" of the app, for example com.midasplayer.apps.candycrushsaga
for Candy Crush Saga. Either this or the id
should be provided.country
: the two letter country code to get the app details from. Defaults to us
. Note this also affects the language of the data.ratings
: load additional ratings information like ratings
number and histogram
Example:
var store = require('app-store-scraper');
store.app({id: 553834731}).then(console.log).catch(console.log);
Results:
{ id: 553834731,
appId: 'com.midasplayer.apps.candycrushsaga',
title: 'Candy Crush Saga',
url: 'https://itunes.apple.com/us/app/candy-crush-saga/id553834731?mt=8&uo=4',
description: 'Candy Crush Saga, from the makers of Candy Crush ...',
icon: 'http://is5.mzstatic.com/image/thumb/Purple30/v4/7a/e4/a9/7ae4a9a9-ff68-cbe4-eed6-fe0a246e625d/source/512x512bb.jpg',
genres: [ 'Games', 'Entertainment', 'Puzzle', 'Arcade' ],
genreIds: [ '6014', '6016', '7012', '7003' ],
primaryGenre: 'Games',
primaryGenreId: 6014,
contentRating: '4+',
languages: [ 'EN', 'JA' ],
size: '73974859',
requiredOsVersion: '5.1.1',
released: '2012-11-14T14:41:32Z',
updated: '2016-05-31T06:39:52Z',
releaseNotes: 'We are back with a tasty Candy Crush Saga update ...',
version: '1.76.1',
price: 0,
currency: 'USD',
free: true,
developerId: 526656015,
developer: 'King',
developerUrl: 'https://itunes.apple.com/us/developer/king/id526656015?uo=4',
developerWebsite: undefined,
score: 4,
reviews: 818816,
currentVersionScore: 4.5,
currentVersionReviews: 1323,
screenshots:
[ 'http://a3.mzstatic.com/us/r30/Purple49/v4/7a/8a/a0/7a8aa0ec-976d-801f-0bd9-7b753fdaf93c/screen1136x1136.jpeg',
... ],
ipadScreenshots:
[ 'http://a1.mzstatic.com/us/r30/Purple49/v4/db/45/cf/db45cff9-bdb6-0832-157f-ac3f14565aef/screen480x480.jpeg',
... ],
appletvScreenshots: [],
supportedDevices:
[ 'iPhone-3GS',
'iPadWifi',
... ]}
Example with ratings
option:
var store = require('app-store-scraper');
store.app({id: 553834731, ratings: true}).then(console.log).catch(console.log);
Results:
{ id: 553834731,
appId: 'com.midasplayer.apps.candycrushsaga',
// ... like above
ratings: 652230,
histogram: {
'1': 7004,
'2': 6650,
'3': 26848,
'4': 140625,
'5': 471103
}
}
Retrieves a list of applications from one of the collections at iTunes. Options:
collection
: the collection to look up. Defaults to collection.TOP_FREE_IOS
, available options can be found here.category
: the category to look up. This is a number associated with the genre for the application. Defaults to no specific category. Available options can be found here.country
: the two letter country code to get the list from. Defaults to us
.num
: the amount of elements to retrieve. Defaults to 50
, maximum
allowed is 200
.fullDetail
: If this is set to true
, an extra request will be
made to get extra attributes of the resulting applications (like
those returned by the app
method).Example:
var store = require('app-store-scraper');
store.list({
collection: store.collection.TOP_FREE_IPAD,
category: store.category.GAMES_ACTION,
num: 2
})
.then(console.log)
.catch(console.log);
Returns:
[ { id: '1091944550',
appId: 'com.hypah.io.slither',
title: 'slither.io',
icon: 'http://is4.mzstatic.com/image/thumb/Purple30/v4/68/d7/4d/68d74df4-f4e7-d4a4-a8ea-dbab686e5554/mzl.ujmngosn.png/100x100bb-85.png',
url: 'https://itunes.apple.com/us/app/slither.io/id1091944550?mt=8&uo=2',
price: 0,
currency: 'USD',
free: true,
description: 'Play against other people online! ...',
developer: 'Steve Howse',
developerUrl: 'https://itunes.apple.com/us/developer/steve-howse/id867992583?mt=8&uo=2',
developerId: '867992583',
genre: 'Games',
genreId: '6014',
released: '2016-03-25T10:01:46-07:00' },
{ id: '1046846443',
appId: 'com.ubisoft.hungrysharkworld',
title: 'Hungry Shark World',
icon: 'http://is5.mzstatic.com/image/thumb/Purple60/v4/08/1a/8d/081a8d06-b4d5-528b-fa8e-f53646b6f797/mzl.ehtjvlft.png/100x100bb-85.png',
url: 'https://itunes.apple.com/us/app/hungry-shark-world/id1046846443?mt=8&uo=2',
price: 0,
currency: 'USD',
free: true,
description: 'The stunning sequel to Hungry ...',
developer: 'Ubisoft',
developerUrl: 'https://itunes.apple.com/us/developer/ubisoft/id317644720?mt=8&uo=2',
developerId: '317644720',
genre: 'Games',
genreId: '6014',
released: '2016-05-04T09:43:06-07:00' } ]
Retrieves a list of apps that results of searching by the given term. Options:
term
: the term to search for (required).num
: the amount of elements to retrieve. Defaults to 50
.page
: page of results to retrieve. Defaults to to 1
.country
: the two letter country code to get the similar apps
from. Defaults to us
.lang
: language code for the result text. Defaults to en-us
.idsOnly
: (optional, defaults to false
): skip extra lookup request. Search results will contain array of application ids.Example:
var store = require('app-store-scraper');
store.search({
term: 'panda',
num: 2,
page: 3,
country : 'us',
lang: 'lang'
})
.then(console.log)
.catch(console.log);
Results:
[
{ id: 903990394,
appId: 'com.pandarg.pxmobileapp',
title: 'Panda Express Chinese Kitchen',
(...)
},
{
id: 700970012,
appId: 'com.sgn.pandapop',
title: 'Panda Pop',
(...)
}
]
Retrieves a list of applications by the give developer id. Options:
devId
: the iTunes "artistId" of the developer, for example 284882218
for Facebook.country
: the two letter country code to get the app details from. Defaults to us
. Note this also affects the language of the data.Example:
var store = require('app-store-scraper');
store.developer({devId: 284882218}).then(console.log).catch(console.log);
Results:
[
{ id: 284882215,
appId: 'com.facebook.Facebook',
title: 'Facebook',
(...)
},
{ id: 454638411,
appId: 'com.facebook.Messenger',
title: 'Messenger',
(...)
},
(...)
]
Given a string returns up to 50 suggestions to complete a search query term.
A priority index is also returned which goes from 0
for terms with low traffic
to 10000
for the most searched terms.
Example:
var store = require('app-store-scraper');
store.suggest({term: 'panda'}).then(console.log).catch(console.log);
Results:
[
{ term: 'panda pop', priority: '7557' },
{ term: 'panda pop free', priority: '5796' },
{ term: 'panda', priority: '5512' },
{ term: 'panda express', priority: '5174' },
{ term: 'panda games', priority: '4773' },
{ term: 'panda pop 2', priority: '4695' },
...
]
Returns the list of "customers also bought" apps shown in the app's detail page. Options:
id
: the iTunes "trackId" of the app, for example 553834731
for Candy Crush Saga. Either this or the appId
should be provided.appId
: the iTunes "bundleId" of the app, for example com.midasplayer.apps.candycrushsaga
for Candy Crush Saga. Either this or the id
should be provided.Example:
var store = require('app-store-scraper');
store.similar({id: 553834731}).then(console.log).catch(console.log);
Results:
[
{
id: 632285588,
appId: 'com.nerdyoctopus.dots',
title: 'Dots: A Game About Connecting',
(...)
},
{
id: 727296976,
appId: 'com.sgn.cookiejam',
title: 'Cookie Jam',
(...)
}
(...)
]
Retrieves a page of reviews for the app. Options:
id
: the iTunes "trackId" of the app, for example 553834731
for Candy Crush Saga. Either this or the appId
should be provided.appId
: the iTunes "bundleId" of the app, for example com.midasplayer.apps.candycrushsaga
for Candy Crush Saga. Either this or the id
should be provided.country
: the two letter country code to get the reviews from. Defaults to us
.page
: the review page number to retrieve. Defaults to 1
, maximum allowed is 10
.sort
: the review sort order. Defaults to store.sort.RECENT
, available options are store.sort.RECENT
and store.sort.HELPFUL
.Example:
var store = require('app-store-scraper');
store.reviews({
appId: 'com.midasplayer.apps.candycrushsaga',
sort: store.sort.HELPFUL,
page: 2
})
.then(console.log)
.catch(console.log);
Returns:
[ { id: '1472864600',
userName: 'Linda D. Lopez',
userUrl: 'https://itunes.apple.com/us/reviews/id324568166',
version: '1.80.1',
score: 5,
title: 'Great way to pass time or unwind',
text: 'I was a fan of Bejeweled many moons ago...',
url: 'https://itunes.apple.com/us/review?id=553834731&type=Purple%20Software' },,
{ id: '1472864708',
userName: 'Jennamaxkidd',
userUrl: 'https://itunes.apple.com/us/reviews/id223990784',
version: '1.80.1',
score: 1,
title: 'Help! THE PROBLEM IS NOT FIXED!',
text: 'STILL HAVING THE SAME ISSUE. It\'s happening again...',
url: 'https://itunes.apple.com/us/review?id=553834731&type=Purple%20Software' },
(...)
]
Retrieves the ratings for the app. Options:
id
: the iTunes "trackId" of the app, for example 553834731
for Candy Crush Saga. Either this or the appId
should be provided.appId
: the iTunes "bundleId" of the app, for example com.midasplayer.apps.candycrushsaga
for Candy Crush Saga. Either this or the id
should be provided.country
: the two letter country code to get the reviews from. Defaults to us
.Example:
var store = require('app-store-scraper');
store.ratings({
appId: 'com.midasplayer.apps.candycrushsaga',
})
.then(console.log)
.catch(console.log);
Returns:
{
ratings: 652719,
histogram: {
'1': 7012,
'2': 6655,
'3': 26876,
'4': 140680,
'5': 471496
}
}
Since every library call performs one or multiple requests to
an iTunes API or web page, sometimes it can be useful to cache the results
to avoid requesting the same data twice. The memoized
function returns the
store object that caches its results:
var store = require('app-store-scraper'); // regular non caching version
var memoized = require('app-store-scraper').memoized(); // cache with default options
var memoizedCustom = require('app-store-scraper').memoized({ maxAge: 1000 * 60 }); // cache with default options
memoized.app({id: 553834731}) // will make a request
.then(() => memoized.app({id: 553834731})); // will resolve to the cached value without requesting
The options available are those supported by the memoizee module. By default up to 1000 values are cached by each method and they expire after 5 minutes.
FAQs
scrape data from the itunes app store
The npm package app-store-scraper-l receives a total of 3 weekly downloads. As such, app-store-scraper-l popularity was classified as not popular.
We found that app-store-scraper-l demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.