App Store Data Extractor - Scrape reviews too!

  • epctex/appstore-scraper
  • Modified
  • Users 231
  • Runs 7.7k
  • Created by Author's avatarepctex

Discover a vast collection of apps, movies, podcasts, reviews, and more on iTunes and the App Store. Extract comprehensive data including images, ISBN, author, description, title, language, user ratings, and reviews focused on countries without limitations. Unlimited and extremely fast!

Free trial for 3 days

Then $25.00/month

No credit card required now

App Store Data Extractor - Scrape reviews too!

Free trial for 3 days

Then $25.00/month

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.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "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
  }
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/epctex~appstore-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'