# App Store Reviews Export (`appsigma/app-store-reviews-export`) Actor

Export Apple App Store reviews for any app, with country, score and sort filters — one row per review.

- **URL**: https://apify.com/appsigma/app-store-reviews-export.md
- **Developed by:** [AppSigma.io](https://apify.com/appsigma) (community)
- **Categories:** Developer tools, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $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

## App Store Reviews Export 📝

**Export Apple App Store reviews for any app, at scale.** Give this Actor a list of
app IDs and it pulls every matching review — author, title, text, star rating,
developer response, app version, dates, and vote counts — as clean, flat rows ready
for CSV, Excel, JSON, or your own pipeline.

No scraping, no proxies, no HTML parsing, no rate-limit headaches. Powered by the
[AppSigma App Store API](https://appsigma.io), served straight from Apple's data.

---

### What it does

For every **app × country** you provide, the Actor pages through the App Store
review feed and records each review as a flat row. Filter by star rating, choose the
sort order, and cap results per app or for the whole run.

- ✅ **Any app, any storefront** — export reviews for one app or a whole portfolio,
  across `us`, `gb`, `de`, `jp`, …
- ✅ **Filter by score** — pull only 1-star (churn signals) or 5-star (testimonials)
  reviews, or everything
- ✅ **Four sort orders** — newest, oldest, lowest score first, highest score first
- ✅ **Full review detail** — developer responses, app version at time of review,
  helpfulness votes
- ✅ **Flat, spreadsheet-friendly** output — one row per review, no nesting
- ✅ **Fast & reliable** — parallel requests, automatic retries, no proxies to configure

### Use cases

- **Review monitoring** — track new reviews for your app (or a competitor's) as they
  come in, per country.
- **Sentiment & NLP pipelines** — feed `text`/`title`/`score` straight into a
  sentiment model or topic-clustering job.
- **Multi-country streams** — compare how the same app is reviewed across
  storefronts, or catch a region-specific issue early.
- **Support & churn triage** — filter to low-score reviews to find the complaints
  that need a response first.
- **Release impact analysis** — filter by `applicationVersion` after export to see
  how sentiment shifted after a release.

---

### Input

Configure it from the visual input form or pass JSON:

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| **`appIds`** *(required)* | array of strings | — | Apple App Store track IDs (numeric) to export reviews for |
| `countries` | array of strings | `["us"]` | ISO 3166-1 alpha-2 storefronts; each app is queried in every one |
| `sort` | string | `NEWEST_FIRST` | One of `NEWEST_FIRST`, `OLDEST_FIRST`, `LOWEST_SCORE_FIRST`, `BIGGEST_SCORE_FIRST` |
| `score` | integer 1–5 | — | Only export reviews with this exact star rating (omit for all scores) |
| `maxReviewsPerApp` | integer | `0` | Stop after this many reviews per app × country (`0` = all available) |
| `maxResults` | integer | `0` | Stop the whole run after this many total rows (`0` = no limit) |
| `concurrency` | integer 1–20 | `5` | How many app × country tasks to run in parallel |

#### Example input

```json
{
  "appIds": ["544007664", "284882215"],
  "countries": ["us", "gb"],
  "sort": "NEWEST_FIRST",
  "score": 1,
  "maxReviewsPerApp": 200
}
````

***

### Output

Each row is one review, ready to drop straight into a spreadsheet.

#### Example row

```json
{
  "appId": 544007664,
  "country": "us",
  "reviewId": 14324980881,
  "author": "Otakuinananime",
  "title": "Background play paywall",
  "text": "I will not pay for this. Since you made this app incapable of being used unless you're sitting and staring at it and doing nothing else, I'm deleting from my phone.",
  "score": 1,
  "developerResponse": null,
  "applicationVersion": "21.29.03",
  "createdAt": "2026-07-20T04:38:56.000Z",
  "voteCount": 0,
  "voteSum": 0,
  "_fetchedAt": "2026-07-25T11:00:06.734Z"
}
```

#### Fields

| Field | Description |
|-------|-------------|
| `appId`, `country` | The app and storefront that produced this row |
| `reviewId` | Apple's review identifier |
| `author`, `title`, `text` | Reviewer name, review headline and body |
| `score` | Star rating, 1–5 |
| `developerResponse` | The developer's reply text, or `null` if none |
| `applicationVersion` | App version the reviewer had installed |
| `createdAt` | When the review was posted (ISO 8601) |
| `voteCount`, `voteSum` | Helpfulness votes ("was this helpful?" tally) |
| `_fetchedAt` | When this row was captured (ISO 8601) |

***

### Exporting & integrating

Results land in a standard Apify dataset, so you can:

- **Download** as CSV, JSON, Excel, XML, or RSS from the run's Storage tab.
- **Fetch via API** — pull the dataset programmatically with the Apify API or clients.
- **Automate** — schedule runs, or connect to Make, Zapier, n8n, Slack, and more.

### Pricing

This Actor is **pay per result** — you're charged per review row it returns, with no
platform usage or compute to reason about. Use `maxReviewsPerApp` and `maxResults` to
control exactly how many rows (and how much spend) each run produces.

### FAQ

**Do I need an API key or an account anywhere?**
No. Just provide app IDs and run it — billing is handled through Apify.

**Where do I find an app's ID?**
It's the numeric ID in the App Store URL, e.g. `https://apps.apple.com/us/app/x/id544007664`
→ `544007664`.

**Can I export reviews from countries other than the US?**
Yes — put any ISO country codes in `countries` (e.g. `["us","gb","de","jp"]`). Apple's
review corpus is per storefront, so the same app can have very different reviews (and
volumes) in each country.

**Can I filter to just negative or just positive reviews?**
Yes — set `score` to an exact rating (1–5). Leave it unset to get every rating.

**Does this include the developer's replies?**
Yes, in `developerResponse` when the developer has replied to that review.

**How many reviews can I get per app?**
As many as the App Store review feed exposes for that app/country/score combination.
Use `maxReviewsPerApp` or `maxResults` to cap it.

# Actor input Schema

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

Apple App Store track IDs (numeric) to export reviews for.

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

ISO 3166-1 alpha-2 storefront codes (e.g. us, gb, de). Each app is queried in every storefront.

## `sort` (type: `string`):

Order in which reviews are returned.

## `score` (type: `integer`):

Only export reviews with this exact star rating (1-5). Leave empty for all scores.

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

Stop after this many reviews for each app × country combination (0 = all available).

## `maxResults` (type: `integer`):

Stop the whole run after pushing this many rows total (0 = no cap).

## `concurrency` (type: `integer`):

How many app × country tasks to run in parallel (1-20). Lower this if you hit rate limits.

## Actor input object example

```json
{
  "appIds": [
    "544007664"
  ],
  "countries": [
    "us"
  ],
  "sort": "NEWEST_FIRST",
  "maxReviewsPerApp": 0,
  "maxResults": 0,
  "concurrency": 5
}
```

# 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 = {
    "appIds": [
        "544007664"
    ],
    "countries": [
        "us"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("appsigma/app-store-reviews-export").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 = {
    "appIds": ["544007664"],
    "countries": ["us"],
}

# Run the Actor and wait for it to finish
run = client.actor("appsigma/app-store-reviews-export").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 '{
  "appIds": [
    "544007664"
  ],
  "countries": [
    "us"
  ]
}' |
apify call appsigma/app-store-reviews-export --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "App Store Reviews Export",
        "description": "Export Apple App Store reviews for any app, with country, score and sort filters — one row per review.",
        "version": "0.1",
        "x-build-id": "tWgTgb1Fg4AckrYEw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/appsigma~app-store-reviews-export/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-appsigma-app-store-reviews-export",
                "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/appsigma~app-store-reviews-export/runs": {
            "post": {
                "operationId": "runs-sync-appsigma-app-store-reviews-export",
                "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/appsigma~app-store-reviews-export/run-sync": {
            "post": {
                "operationId": "run-sync-appsigma-app-store-reviews-export",
                "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",
                "required": [
                    "appIds"
                ],
                "properties": {
                    "appIds": {
                        "title": "App IDs",
                        "type": "array",
                        "description": "Apple App Store track IDs (numeric) to export reviews for.",
                        "default": [
                            "544007664"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "countries": {
                        "title": "Countries / storefronts",
                        "type": "array",
                        "description": "ISO 3166-1 alpha-2 storefront codes (e.g. us, gb, de). Each app is queried in every storefront.",
                        "default": [
                            "us"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "sort": {
                        "title": "Sort order",
                        "enum": [
                            "NEWEST_FIRST",
                            "OLDEST_FIRST",
                            "LOWEST_SCORE_FIRST",
                            "BIGGEST_SCORE_FIRST"
                        ],
                        "type": "string",
                        "description": "Order in which reviews are returned.",
                        "default": "NEWEST_FIRST"
                    },
                    "score": {
                        "title": "Score filter",
                        "minimum": 1,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Only export reviews with this exact star rating (1-5). Leave empty for all scores."
                    },
                    "maxReviewsPerApp": {
                        "title": "Max reviews per app/country",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Stop after this many reviews for each app × country combination (0 = all available).",
                        "default": 0
                    },
                    "maxResults": {
                        "title": "Max results (cost cap)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Stop the whole run after pushing this many rows total (0 = no cap).",
                        "default": 0
                    },
                    "concurrency": {
                        "title": "Concurrency",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "How many app × country tasks to run in parallel (1-20). Lower this if you hit rate limits.",
                        "default": 5
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
