# Apple App Store App Info Scraper (`good-apis/apple-app-store-app-scraper`) Actor

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

## Pricing

$1.00 / 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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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 App Info Scraper

Get the **full App Store listing for one app** — by numeric app id or bundle id — as clean JSON. Title, developer, star rating and rating count (all-time **and** current version), price, genre, version, release notes, size, minimum iOS, supported languages, content advisories, supported devices, icon, screenshots, and the full description. No login, no browser, no Apple API key.

Give it Instagram's id `389801252` or bundle `com.burbn.instagram` (and a storefront) and it returns one rich record with every published listing field.

**Pricing: $1.00 per 1,000 results** (pay per result). One looked-up app = one result; an app that doesn't exist in the chosen storefront returns nothing and costs nothing.

### What you get

One record per app, including:

| Field | Description |
|---|---|
| `app_id` / `bundle_id` | Apple numeric id and bundle identifier |
| `title` | App name |
| `developer` / `seller` / `seller_url` | Developer, seller name, seller website |
| `artist_id` / `artist_url` | Developer id and App Store developer page |
| `url` | App Store page URL |
| `rating` / `rating_count` | All-time average rating and rating count |
| `average_rating_current_version` / `rating_count_current_version` | Same, for the current version |
| `price` / `formatted_price` / `currency` / `free` | Pricing |
| `genre` / `genres` / `content_rating` | Category and age rating |
| `version` / `release_notes` | Current version and its "What's New" notes |
| `release_date` / `updated` | First release and latest-update dates |
| `minimum_os_version` | Minimum iOS/iPadOS required |
| `languages` | Supported language codes |
| `advisories` | Content advisories |
| `supported_devices` | Device compatibility list |
| `size_bytes` | Download size in bytes |
| `is_game_center_enabled` / `features` | Game Center flag and feature list |
| `icon` / `screenshots` / `ipad_screenshots` | Artwork and screenshot URLs |
| `description` | Full app description |

### Input

| Field | Required | Description |
|---|---|---|
| `app_id` | one of these | Apple numeric app id (trackId), e.g. `389801252` |
| `bundle_id` | one of these | Bundle identifier, e.g. `com.burbn.instagram` |
| `country` | | Storefront code — `us`, `gb`, `de`, `jp`, … (default `us`) |

Provide **either** `app_id` **or** `bundle_id`.

```json
{ "app_id": "389801252", "country": "us" }
````

### Example output

```json
{
  "app_id": 389801252,
  "bundle_id": "com.burbn.instagram",
  "title": "Instagram",
  "developer": "Instagram, Inc.",
  "url": "https://apps.apple.com/us/app/id389801252",
  "rating": 4.71,
  "rating_count": 27543219,
  "average_rating_current_version": 4.7,
  "price": 0,
  "formatted_price": "Free",
  "genre": "Photo & Video",
  "version": "372.0",
  "minimum_os_version": "15.0",
  "languages": ["EN", "FR", "DE", "JA"],
  "size_bytes": 372817920
}
```

### How to run it

**API**:

```bash
curl -X POST "https://api.apify.com/v2/acts/good-apis~apple-app-store-app-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"app_id":"389801252","country":"us"}'
```

**Python**:

```python
from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
run = client.actor("good-apis/apple-app-store-app-scraper").call(
    run_input={"app_id": "389801252", "country": "us"})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["title"], item["version"], item["rating"])
```

**Node.js**:

```javascript
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('good-apis/apple-app-store-app-scraper').call({
  app_id: '389801252', country: 'us',
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(a => console.log(a.title, a.version, a.rating));
```

### FAQ

**Do I need a login or an Apple API key?** No — it reads the public App Store listing.

**Where do I find the app id?** In the App Store URL: `apps.apple.com/app/id389801252` → the id is `389801252`. Or pass the bundle id instead.

**What's the difference vs the Search scraper?** Search takes a keyword and returns many apps with core fields. This takes one id/bundle and returns the **full** listing (release notes, languages, advisories, supported devices, current-version rating, full description).

**What if the app isn't in that storefront?** The run succeeds with an empty dataset — you're not charged.

**Do you also have search and reviews?** Yes — see the **Apple App Store Search Scraper** and the **Apple App Store Reviews Scraper**.

# Actor input Schema

## `app_id` (type: `string`):

Apple App Store numeric app id (trackId), e.g. '324684580' for Spotify. Provide this OR bundle\_id. Find it in the App Store URL: apps.apple.com/app/id\<APP\_ID>.

## `bundle_id` (type: `string`):

App bundle identifier, e.g. 'com.spotify.client'. Provide this OR app\_id.

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

Apple App Store country/storefront code (e.g. 'us', 'gb', 'de', 'jp') — affects availability, pricing, localized languages, and content advisories.

## Actor input object example

```json
{
  "app_id": "324684580",
  "country": "us"
}
```

# Actor output Schema

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

All scraped items in the default dataset.

# 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 = {
    "app_id": "324684580",
    "country": "us"
};

// Run the Actor and wait for it to finish
const run = await client.actor("good-apis/apple-app-store-app-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 = {
    "app_id": "324684580",
    "country": "us",
}

# Run the Actor and wait for it to finish
run = client.actor("good-apis/apple-app-store-app-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 '{
  "app_id": "324684580",
  "country": "us"
}' |
apify call good-apis/apple-app-store-app-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Apple App Store App Info Scraper",
        "version": "0.1",
        "x-build-id": "DoS6CY2XAwXBniPfs"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/good-apis~apple-app-store-app-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-good-apis-apple-app-store-app-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/good-apis~apple-app-store-app-scraper/runs": {
            "post": {
                "operationId": "runs-sync-good-apis-apple-app-store-app-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/good-apis~apple-app-store-app-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-good-apis-apple-app-store-app-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "app_id": {
                        "title": "App ID (trackId)",
                        "type": "string",
                        "description": "Apple App Store numeric app id (trackId), e.g. '324684580' for Spotify. Provide this OR bundle_id. Find it in the App Store URL: apps.apple.com/app/id<APP_ID>."
                    },
                    "bundle_id": {
                        "title": "Bundle ID",
                        "type": "string",
                        "description": "App bundle identifier, e.g. 'com.spotify.client'. Provide this OR app_id."
                    },
                    "country": {
                        "title": "Country / storefront",
                        "type": "string",
                        "description": "Apple App Store country/storefront code (e.g. 'us', 'gb', 'de', 'jp') — affects availability, pricing, localized languages, and content advisories.",
                        "default": "us"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
