# App Store Developer Portfolio Scraper — All Apps (`glitchbound/app-developer-scraper`) Actor

Get every app published by a developer on the App Store, plus portfolio stats: total apps, total ratings, weighted average rating, free vs paid split and top genres. Search by publisher name or Apple artist ID.

- **URL**: https://apify.com/glitchbound/app-developer-scraper.md
- **Developed by:** [Daniel Meshulam](https://apify.com/glitchbound) (community)
- **Categories:** SEO tools, AI, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.10 / 1,000 records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## App Store Developer Portfolio Scraper — All Apps

Get **every app a developer publishes** on the App Store, plus portfolio-level stats that summarise a competitor in one row.

Search by **publisher name or Apple artist ID** — `Spotify`, `Duolingo` and `284882218` all work.

### The summary row

Alongside every app, you get one summary per developer:

| Field | Example |
|---|---|
| `totalApps` | 13 |
| `totalRatings` | 41,692,832 |
| `weightedAvgRating` | 4.57 |
| `freeApps` / `paidApps` | 11 / 2 |
| `topGenres` | Social Networking (4), Business (4) |
| `mostRatedApp` | Facebook |
| `lastUpdatedAt` | 2026-07-24 |

That's a competitor sized up at a glance, instead of you averaging ratings by hand.

### Input example

```json
{
  "developers": ["Spotify", "Duolingo", "284882218"],
  "country": "us",
  "maxAppsPerDeveloper": 200,
  "includeSummary": true
}
```

### What you get per app

`title` · `appId` · `bundleId` · `rating` + `ratingCount` · `price` + `currency` · `isFree` · `genre` + `genres` · `version` · `releaseDate` · `updatedAt` · `contentRating` · `minimumOsVersion` · `sizeBytes` · `icon` · `screenshots` · `languages` · `sellerUrl` · `url` · `description`

### Use cases

- **Competitor research** — see a rival's whole catalogue, not just their flagship
- **Portfolio benchmarking** — compare publishers by total ratings and weighted rating
- **M\&A / diligence** — size up a studio's output and update cadence
- **ASO** — find which categories a successful publisher keeps shipping into
- **Lead generation** — find studios building in your niche

### Notes

- Built on **Apple's official iTunes API** — no key, no bot wall, stable by construction.
- **A misspelled developer name fails loudly** with the closest match named, rather than silently returning an unrelated publisher's catalogue. Those error rows are never charged.
- **Google Play is not included.** Its developer pages return 404/400 for both the numeric and named URL forms, so there is no clean public source. Better omitted than half-working.
- Apple serves up to 200 apps per publisher.

# Actor input Schema

## `developers` (type: `array`):

Publisher names or Apple artist IDs, one per line. Names are resolved automatically — "Spotify", "Duolingo" and "284882218" all work.

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

Two-letter App Store country code (us, gb, de, jp, il...). A publisher's catalogue and pricing differ per storefront.

## `maxAppsPerDeveloper` (type: `integer`):

Upper limit of apps returned per publisher (Apple serves up to 200).

## `includeSummary` (type: `boolean`):

Adds one summary row per developer: total apps, total ratings, weighted average rating, free vs paid split, top genres and most-rated app. This is the fastest way to size up a competitor.

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

Proxy settings.

## Actor input object example

```json
{
  "developers": [
    "Duolingo"
  ],
  "country": "us",
  "maxAppsPerDeveloper": 200,
  "includeSummary": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

Every app published by a developer, plus portfolio-level statistics.

# 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 = {
    "developers": [
        "Duolingo"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("glitchbound/app-developer-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 = { "developers": ["Duolingo"] }

# Run the Actor and wait for it to finish
run = client.actor("glitchbound/app-developer-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 '{
  "developers": [
    "Duolingo"
  ]
}' |
apify call glitchbound/app-developer-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/O03MCTKJ0jqmRudPL/builds/TU5eTlb1wvcA01K2E/openapi.json
