# Apple App Store Scraper - Apps, Reviews & Ratings (`solidscrape/appstore-scraper`) Actor

Scrape the Apple App Store without an API key: app details, ratings, and reviews by keyword, app ID, or bundle ID, in any country. Export JSON/CSV/Excel.

- **URL**: https://apify.com/solidscrape/appstore-scraper.md
- **Developed by:** [Shahryar](https://apify.com/solidscrape) (community)
- **Categories:** Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Apple App Store Scraper – Apps, Reviews & Ratings (No API Key)

Extract structured data from the **Apple App Store** without an API key: full **app details**, **ratings**, and **reviews** — by keyword, App ID, or bundle ID, in any country storefront. Export to JSON, CSV, or Excel.

Built for **app developers, ASO (App Store Optimization) specialists, market researchers, and data teams**. Pairs perfectly with our Google Play Scraper for **both-platform** app intelligence.

### What it does

- 🔎 **Search apps** by keyword and get every matching app.
- 📱 **App details** – complete metadata by numeric App ID or bundle ID.
- ⭐ **Reviews** – reviewer, rating, title, text, app version, and date (most-recent feed).
- 🌍 **Any country & language** – choose the storefront via `country`.
- 🧱 **Complete output** – price, rating, rating count, genre(s), version, release dates, release notes, description, content rating, size, icon, and screenshots.

### Why this scraper

Uses Apple's **official iTunes endpoints** (search, lookup, and the customer-reviews feed) — so it's **fast, reliable, and key-free**, with none of the blocking that plagues HTML scrapers. Every search result comes back fully enriched.

### Example input

```json
{
  "searchTerms": ["habit tracker"],
  "appIds": ["389801252"],
  "bundleIds": ["com.burbn.instagram"],
  "country": "us",
  "maxAppsPerSearch": 50,
  "scrapeReviews": true,
  "maxReviewsPerApp": 100
}
```

### Example app output

```json
{
  "type": "app",
  "id": 389801252,
  "bundleId": "com.burbn.instagram",
  "title": "Instagram",
  "developer": "Instagram, Inc.",
  "price": 0,
  "free": true,
  "score": 4.7,
  "ratings": 28910342,
  "genre": "Photo & Video",
  "version": "330.0",
  "currentVersionReleaseDate": "2026-06-02T18:21:00Z",
  "contentRating": "12+",
  "url": "https://apps.apple.com/us/app/instagram/id389801252"
}
```

### Example review output

```json
{
  "type": "review",
  "appId": 389801252,
  "userName": "appfan_99",
  "score": 5,
  "title": "Love it",
  "text": "Best app for sharing photos.",
  "version": "330.0",
  "updated": "2026-06-06T08:12:00-07:00"
}
```

### Output fields

Search and lookup results are pushed as **app** items; with reviews enabled, each review is a separate **review** item.

**App** (`type: "app"`)

| Field | Description |
|---|---|
| `id` | App Store track ID |
| `bundleId` | App bundle identifier |
| `title` | App name |
| `developer` / `developerId` / `developerUrl` | Developer name, ID, and profile URL |
| `price` / `currency` / `free` / `formattedPrice` | Price, currency, free flag, and formatted price |
| `score` / `ratings` | Average rating (all versions, 0–5) and total ratings |
| `scoreCurrentVersion` / `ratingsCurrentVersion` | Rating and rating count for the current version |
| `genre` / `genres` | Primary category and full category list |
| `version` | Current version |
| `releaseDate` / `currentVersionReleaseDate` | First release and latest update dates |
| `releaseNotes` | Latest version changelog |
| `description` | Full app description |
| `contentRating` | Age rating (4+, 12+, …) |
| `minimumOsVersion` | Minimum iOS version |
| `fileSizeBytes` | App size in bytes |
| `supportedDevices` / `languages` | Supported devices and language codes (arrays) |
| `icon` | App icon URL (512px) |
| `screenshots` / `ipadScreenshots` | iPhone and iPad screenshot URLs (arrays) |
| `url` | App Store page URL |
| `scrapedAt` | ISO 8601 timestamp |

**Review** (`type: "review"`)

| Field | Description |
|---|---|
| `appId` | App the review belongs to |
| `userName` | Reviewer name |
| `score` | Star rating (1–5) |
| `title` | Review title |
| `text` | Review body |
| `version` | App version reviewed |
| `updated` | Review date |

### Common use cases

- **ASO & keyword research** – see which apps rank for your target keywords.
- **Review analysis & sentiment** – export reviews for analysis.
- **Competitor monitoring** – track ratings, versions, and release cadence.
- **Cross-platform datasets** – combine with Google Play data for full coverage.

### Input reference

| Field | Type | Description |
|---|---|---|
| `searchTerms` | array | Keywords to search the App Store. |
| `appIds` | array | Numeric App Store IDs to scrape directly. |
| `bundleIds` | array | App bundle identifiers to scrape directly. |
| `country` | string | Two-letter storefront country code (default `us`). |
| `maxAppsPerSearch` | integer | Max apps per search term (up to 200). |
| `maxItems` | integer | Max apps in total (`0` = no limit). |
| `scrapeReviews` | boolean | Also scrape reviews for every app found. |
| `maxReviewsPerApp` | integer | Cap on reviews per app. |
| `proxyConfiguration` | object | Proxy settings (default Apify proxy is plenty). |

### FAQ

**Do I need an Apple/iTunes API key?** No. This Actor uses Apple's public iTunes endpoints — no key or login.

**How do I find an App ID?** It's the number in the App Store URL, e.g. `apps.apple.com/us/app/instagram/id389801252` → `389801252`.

**How many reviews can I get?** Apple's public review feed exposes up to ~500 most-recent reviews per app (10 pages × ~50), per storefront.

**Can I scrape other countries?** Yes — set `country` to `gb`, `de`, `jp`, etc.

# Actor input Schema

## `searchTerms` (type: `array`):

Keywords to search on the App Store, e.g. "fitness tracker", "habit".

## `appIds` (type: `array`):

Numeric App Store IDs to scrape directly, e.g. "389801252" (the id in apps.apple.com/app/id389801252).

## `bundleIds` (type: `array`):

App bundle identifiers to scrape directly, e.g. "com.burbn.instagram".

## `country` (type: `string`):

Two-letter App Store storefront country code (affects availability, price, language).

## `maxAppsPerSearch` (type: `integer`):

Maximum apps to return per search term (Apple allows up to 200).

## `maxItems` (type: `integer`):

Maximum number of apps to return in total. Set 0 for no limit.

## `scrapeReviews` (type: `boolean`):

If enabled, also scrape reviews for every app found (reviewer, rating, title, text, version).

## `maxReviewsPerApp` (type: `integer`):

Only used when 'Scrape reviews' is on. Apple's public review feed exposes up to ~500 most-recent reviews per app.

## `proxyConfiguration` (type: `object`):

Apple's iTunes endpoints are open and rarely block; the default Apify proxy is plenty.

## Actor input object example

```json
{
  "searchTerms": [
    "habit tracker",
    "budget"
  ],
  "appIds": [
    "389801252"
  ],
  "bundleIds": [
    "com.burbn.instagram"
  ],
  "country": "us",
  "maxAppsPerSearch": 50,
  "maxItems": 200,
  "scrapeReviews": false,
  "maxReviewsPerApp": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `apps` (type: `string`):

No description

## `reviews` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "habit tracker"
    ],
    "maxAppsPerSearch": 50,
    "maxItems": 200,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("solidscrape/appstore-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": ["habit tracker"],
    "maxAppsPerSearch": 50,
    "maxItems": 200,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("solidscrape/appstore-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "habit tracker"
  ],
  "maxAppsPerSearch": 50,
  "maxItems": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call solidscrape/appstore-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=solidscrape/appstore-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Xnsl9laWWzSELK80C/builds/PH1HeQwVCEjoqiEiM/openapi.json
