# App Store Competitor Benchmark | Appalize (`appalize/app-store-competitor-benchmark`) Actor

Compare 2–10 iOS apps by ratings, prices, update dates, metadata and screenshots across country storefronts. Transparent cohort metrics, no API key.

- **URL**: https://apify.com/appalize/app-store-competitor-benchmark.md
- **Developed by:** [Appalize](https://apify.com/appalize) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 competitor benchmark reports

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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## App Store Competitor Benchmark | Appalize

Compare 2–10 iOS apps by ratings, prices, update dates, metadata and screenshots across country storefronts. Transparent cohort metrics, no API key.

### Quick start

```json
{
  "apps": [
    "324684580",
    "284035177"
  ],
  "countries": [
    "us"
  ],
  "maxItems": 10
}
```

### What it compares

Supply **2–10 distinct apps**. For each country, receive one report with a nested `apps` table and cohort summary:

- Current ratings and rating counts; tied counts receive equal cohort ranks.
- Share of the cohort's known ratings and difference from its mean rating.
- Price, currency, release/update dates and current version.
- Title/description lengths and screenshot counts.

The entire cohort must be fetched successfully before a report is emitted. Country-level failures are recorded in `RUN-SUMMARY`. A numeric ID and bundle ID resolving to the same app are deduplicated.

### Interpretation

These are comparisons within your supplied cohort, not App Store chart ranks or market share. Ratings are not downloads. No revenue, download, keyword-volume or causal growth estimates are generated. Prices are compared inside a storefront; inspect currency before aggregating across countries. Missing values remain null.

### Output, automation and cost control

Results are stored in the default dataset; use JSON to preserve nested arrays, or export CSV/Excel through Apify. `RUN-SUMMARY` contains counts and source failures. Each row has source and collection time. `maxItems` caps reports/snapshots, not nested reviews or cohort members. Checkpoints deduplicate resumed work; downstream consumers should also use `recordId` within a run because dataset/checkpoint writes are not atomic.

Use the Apify API, schedules, Make, n8n or MCP integration. No Appalize key, App Store Connect credentials or external LLM key is needed. Only Apple App Store is supported.

**Pricing:** $10 per 1,000 successful country cohort reports, plus $0.00005 per Actor start (one event per GB, minimum one). Platform usage is included. Each result includes all nested data; failed units have no result charge. Use the live Pricing tab and maximum charge setting before running.

Built by [Appalize](https://appalize.com). Report reproducible issues with a run ID and non-sensitive input in the Actor Issues tab.

# Actor input Schema

## `apps` (type: `array`):

Apple numeric IDs, bundle IDs or HTTPS App Store URLs.

## `countries` (type: `array`):

Up to 10 Apple storefronts. One report/snapshot per app and country; benchmark emits one cohort report per country.

## `language` (type: `string`):

Optional language code, such as en, tr or de. Omit to use country defaults. Do not force one language when comparing localizations.

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

Hard cap across all inputs and countries. A rank check or keyword seed is one result with nested data.

## Actor input object example

```json
{
  "apps": [
    "324684580",
    "284035177"
  ],
  "countries": [
    "us"
  ],
  "maxItems": 100
}
```

# Actor output Schema

## `results` (type: `string`):

No description

## `summary` (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 = {
    "apps": [
        "324684580",
        "284035177"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("appalize/app-store-competitor-benchmark").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 = { "apps": [
        "324684580",
        "284035177",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("appalize/app-store-competitor-benchmark").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "apps": [
    "324684580",
    "284035177"
  ]
}' |
apify call appalize/app-store-competitor-benchmark --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,appalize/app-store-competitor-benchmark"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/gfvNrqoXpZ9a7sJpc/builds/1JLyfdV1gCgh8fAqo/openapi.json
