Scrape iTunes and App Store for millions of apps, movies, podcasts, reviews, and more. Crawl any media type with images, ISBN, author, description, title, language, and all other information that it provides. User scores and reviews focused on countries. Unlimited and extremely fast!

- Modified
- Users111
- Runs1,483
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running actors via the API in Apify Docs.
import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare actor input
const input = {
"startUrls": [
"https://itunes.apple.com/us/movie/inception/id400763833",
"https://apps.apple.com/us/app/angry-birds-2/id880047117"
],
"term": "game",
"maxItems": 20,
"customMapFunction": (object) => { return {...object} },
"proxy": {
"useApifyProxy": true
}
};
(async () => {
// Run the actor and wait for it to finish
const run = await client.actor("epctex/appstore-scraper").call(input);
// Fetch and print actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();