# iTunes & App Store Scraper Goat (`goat255/itunes-scraper`) Actor

Scrape Apple's catalog without a login. Search apps, podcasts, music, movies, TV shows and books by keyword, or look up specific IDs. Returns clean rows with name, artist, genre, price, rating, rating count, release date, artwork, and store URL. Choose the country storefront.

- **URL**: https://apify.com/goat255/itunes-scraper.md
- **Developed by:** [Goutam Soni](https://apify.com/goat255) (community)
- **Categories:** Developer tools, E-commerce, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.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.
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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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

## iTunes & App Store Scraper

Search Apple's catalog at scale without a login or API key: apps, podcasts, music, movies, TV shows, ebooks and audiobooks. Search by keyword for any entity in any country storefront, or look up specific IDs. Every row comes back in one clean, structured shape with name, artist, genre, price, rating, rating count, release date, artwork and store URL.

### What it does

- **Keyword search** - results for any term, for the entity you choose (apps, podcasts, music, movies, and more).
- **Top charts** - pull the top free or top paid app rankings for any country, with each app's chart position. This is ranking data the search API does not provide.
- **Country storefronts** - search or chart any country's store (us, gb, sg, in, and so on); prices, availability and rankings vary by country.
- **Direct lookup** - fetch specific items by iTunes ID or, for apps, by bundle ID.
- **Clean records** - ratings, rating counts, price, genre, chart rank, release date, episode/track counts, RSS feed (for podcasts), and artwork in a stable shape.

#### Charts example

```json
{
  "mode": "charts",
  "chart": "top-free",
  "country": "sg",
  "maxItemsPerSource": 50
}
````

Common uses: app store research and ASO, podcast discovery, price and rating tracking, music and media catalogs, and content datasets.

### Input

| Field | Type | Description |
|---|---|---|
| `searchQueries` | array | Terms to search. One search per entry. |
| `entity` | string | `app`, `podcast`, `music`, `musicArtist`, `album`, `movie`, `tvShow`, `ebook`, `audiobook`. |
| `lookupIds` | array | iTunes IDs (numeric) or app bundle IDs. Skips search. |
| `country` | string | Two-letter storefront code (default `us`). |
| `maxItemsPerSource` | integer | Cap per search. Default 50, up to 200. |
| `proxyConfiguration` | object | Optional. Works without a proxy. |

At least one of `searchQueries` or `lookupIds` is required.

#### Example input

```json
{
  "searchQueries": ["photo editor", "fitness"],
  "entity": "app",
  "country": "us",
  "maxItemsPerSource": 100
}
```

### Output

Each item is one normalized catalog result.

```json
{
  "entity": "app",
  "id": 1234567890,
  "name": "Example Fitness Tracker",
  "artistName": "Acme Co",
  "genre": "Health & Fitness",
  "price": "Free",
  "priceValue": 0,
  "currency": "USD",
  "rating": 4.76,
  "ratingCount": 46754,
  "contentRating": "4+",
  "releaseDate": "2015-03-01T08:00:00Z",
  "trackCount": null,
  "description": "Track your workouts and progress...",
  "artworkUrl": "https://is1-ssl.mzstatic.com/image/.../512x512bb.jpg",
  "feedUrl": null,
  "url": "https://apps.apple.com/us/app/example/id1234567890",
  "scrapedAt": "2026-07-18T12:30:00.000Z"
}
```

Fields that do not apply to an entity (for example `feedUrl` on an app, or `trackCount` on a song) come back as `null`, so the shape is always the same. Podcasts include their `feedUrl` and episode `trackCount`.

### Notes

- No login and no API key. Pick an entity, set your terms, and run.
- Use `country` to compare prices and availability across storefronts.
- For apps you can look up by bundle ID (for example `com.example.app`) as well as numeric ID.

**Found this useful?** [Leave a quick review](https://apify.com/goat255/itunes-scraper/reviews). It takes a few seconds and it genuinely helps other people find the actor.

# Actor input Schema

## `mode` (type: `string`):

"search" to search the catalog, or "charts" to pull the top app rankings for a country (data the search API does not provide).

## `chart` (type: `string`):

Which app chart to pull in charts mode.

## `searchQueries` (type: `array`):

Terms to search Apple's catalog (search mode). One search per entry, for the chosen entity and country.

## `entity` (type: `string`):

What to search for.

## `lookupIds` (type: `array`):

Direct iTunes IDs (numeric) or app bundle IDs (e.g. com.example.app) to fetch. Skips search.

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

Two-letter country code for the storefront (e.g. us, gb, sg, in). Prices and availability vary by country.

## `maxItemsPerSource` (type: `integer`):

Cap per search query. The API returns up to 200.

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

Optional. The iTunes API is public and works without a proxy; enable to spread requests across IPs on large runs.

## Actor input object example

```json
{
  "mode": "search",
  "chart": "top-free",
  "searchQueries": [
    "photo editor",
    "true crime"
  ],
  "entity": "app",
  "lookupIds": [
    "389801252",
    "com.example.app"
  ],
  "country": "us",
  "maxItemsPerSource": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (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 = {
    "searchQueries": [
        "meditation"
    ],
    "lookupIds": [],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("goat255/itunes-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 = {
    "searchQueries": ["meditation"],
    "lookupIds": [],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("goat255/itunes-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 '{
  "searchQueries": [
    "meditation"
  ],
  "lookupIds": [],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call goat255/itunes-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "iTunes & App Store Scraper Goat",
        "description": "Scrape Apple's catalog without a login. Search apps, podcasts, music, movies, TV shows and books by keyword, or look up specific IDs. Returns clean rows with name, artist, genre, price, rating, rating count, release date, artwork, and store URL. Choose the country storefront.",
        "version": "0.1",
        "x-build-id": "Me74v8lmNWoXeNqfh"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/goat255~itunes-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-goat255-itunes-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/goat255~itunes-scraper/runs": {
            "post": {
                "operationId": "runs-sync-goat255-itunes-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/goat255~itunes-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-goat255-itunes-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": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "search",
                            "charts"
                        ],
                        "type": "string",
                        "description": "\"search\" to search the catalog, or \"charts\" to pull the top app rankings for a country (data the search API does not provide).",
                        "default": "search"
                    },
                    "chart": {
                        "title": "Chart (charts mode)",
                        "enum": [
                            "top-free",
                            "top-paid"
                        ],
                        "type": "string",
                        "description": "Which app chart to pull in charts mode.",
                        "default": "top-free"
                    },
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Terms to search Apple's catalog (search mode). One search per entry, for the chosen entity and country.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "entity": {
                        "title": "Entity type",
                        "enum": [
                            "app",
                            "podcast",
                            "music",
                            "musicArtist",
                            "album",
                            "movie",
                            "tvShow",
                            "ebook",
                            "audiobook"
                        ],
                        "type": "string",
                        "description": "What to search for.",
                        "default": "app"
                    },
                    "lookupIds": {
                        "title": "Lookup IDs",
                        "type": "array",
                        "description": "Direct iTunes IDs (numeric) or app bundle IDs (e.g. com.example.app) to fetch. Skips search.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "country": {
                        "title": "Country storefront",
                        "type": "string",
                        "description": "Two-letter country code for the storefront (e.g. us, gb, sg, in). Prices and availability vary by country.",
                        "default": "us"
                    },
                    "maxItemsPerSource": {
                        "title": "Max results per search",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Cap per search query. The API returns up to 200.",
                        "default": 50
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional. The iTunes API is public and works without a proxy; enable to spread requests across IPs on large runs."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
