# App Review Deep Report — Sentiment, Themes & Complaints (`nexgenwatch/app-review-deep-report`) Actor

- **URL**: https://apify.com/nexgenwatch/app-review-deep-report.md
- **Developed by:** [NexGen Watch](https://apify.com/nexgenwatch) (community)
- **Categories:** Business, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6,700.00 / 1,000 deep reports

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

## App Review Deep Report — Sentiment, Themes, Complaints & Trend

**Stop paying $50–100+/month for a review-intelligence subscription you use a few times.**
This actor delivers the same deep review analysis **per report, on demand, with no subscription** — one app in, one complete intelligence report out.

| | Typical review-intelligence SaaS | App Review Deep Report |
|---|---|---|
| Pricing | **$50–100+/month**, every month | **$10.00 / report** (FREE tier), pay only when you run |
| Commitment | Annual/monthly lock-in | None — per report |
| Break-even | — | Run **5+ reports/month** and you're still under one month of most subscriptions |

If you pull a competitive or portfolio review read **once a week**, that's ~$40/month at the FREE tier (less on volume tiers) — versus $50–100+/month for an always-on seat you rarely max out.

### What you get in one report

Feed it **one app** (`app_id` + `store`) and it fetches up to **1,000 public reviews** (logged-out, public data only) and returns **one deep report**:

- **Full sentiment breakdown** — positive / neutral / negative split, average sentiment score, average star rating
- **Theme clustering** — the terms and phrases reviewers actually use, ranked by mentions
- **Complaint ranking** — negative-review clusters ranked by frequency, each with its share of negatives and a real example quote
- **Feature-request extraction** — reviews that ask for something, clustered into the most-requested asks
- **Trend vs prior period** — current window compared against a prior window (explicit dates, or an automatic median split), with sentiment and rating deltas and a worsening/improving/flat call
- **Developer-response coverage** — how much of the feedback the developer is answering
- **Rendered markdown summary** — the whole report as a readable brief (a dataset field *and* a key-value-store record), ready to paste into a deck or ticket

### Input

| Field | Required | Description |
|---|---|---|
| `app_id` | yes | Apple numeric track id (e.g. `284882215`) or Google Play package name (e.g. `com.spotify.music`) |
| `store` | yes | `apple` or `google_play` |
| `country` | no | Storefront country code (default `us`) |
| `language` | no | Language code for Google Play (default `en`) |
| `max_reviews` | no | Cap on public reviews fetched (default/max 1000) |
| `trend_current_from` / `trend_current_to` / `trend_prior_from` / `trend_prior_to` | no | Explicit ISO date windows for the trend comparison. Leave all empty to auto-split by median date. |

### Method — deterministic, transparent, model-included

Analysis runs the **ngd-lexicon-v1** engine: a transparent lexicon plus a rating prior. It is fully **deterministic** — the same reviews always produce the same report. **No external LLM, no API key to bring, no "AI" black box.** The model is included in the price.

### Pricing

- **Actor start:** $0.05 (one-time, platform-reserved).
- **`deep_report`:** **$10.00** per report at the FREE tier (BRONZE $9.00 · SILVER $8.00 · GOLD $6.70). Charged **exactly once, only after the report is successfully built and delivered.** If reviews can't be fetched or analysis can't run, the run fails and **you are charged nothing** for the report.

### Notes

- Public, logged-out data only. No login, no private endpoints.
- Cost-bounded: memory/time caps, a bounded per-page request-attempt budget, and a hard review/output cap.

# Actor input Schema

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

The app to report on. Apple: the numeric track id (e.g. 284882215). Google Play: the package name (e.g. com.spotify.music).
## `store` (type: `string`):

Which public store to pull reviews from.
## `country` (type: `string`):

Two-letter storefront country code (default us).
## `language` (type: `string`):

Two-letter language code, used for Google Play (default en).
## `max_reviews` (type: `integer`):

Hard cap on public reviews fetched for the report (max 1000).
## `max_themes` (type: `integer`):

Maximum theme and complaint clusters returned.
## `trend_current_from` (type: `string`):

Optional ISO date (YYYY-MM-DD). Start of the current period for the trend comparison. If all four trend dates are empty, the report auto-splits reviews by median date.
## `trend_current_to` (type: `string`):

Optional ISO date (YYYY-MM-DD). End of the current period.
## `trend_prior_from` (type: `string`):

Optional ISO date (YYYY-MM-DD). Start of the prior period compared against the current one.
## `trend_prior_to` (type: `string`):

Optional ISO date (YYYY-MM-DD). End of the prior period.
## `proxy_configuration` (type: `object`):

Optional Apify proxy settings; a fresh session is requested for every retry.

## Actor input object example

```json
{
  "app_id": "284882215",
  "store": "apple",
  "country": "us",
  "language": "en",
  "max_reviews": 1000,
  "max_themes": 12,
  "trend_current_from": "",
  "trend_current_to": "",
  "trend_prior_from": "",
  "trend_prior_to": "",
  "proxy_configuration": {
    "useApifyProxy": true
  }
}
````

# 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 = {
    "app_id": "284882215"
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgenwatch/app-review-deep-report").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": "284882215" }

# Run the Actor and wait for it to finish
run = client.actor("nexgenwatch/app-review-deep-report").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": "284882215"
}' |
apify call nexgenwatch/app-review-deep-report --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "App Review Deep Report — Sentiment, Themes & Complaints",
        "version": "0.1",
        "x-build-id": "5oPmbMRSXANSwemci"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/nexgenwatch~app-review-deep-report/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-nexgenwatch-app-review-deep-report",
                "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/nexgenwatch~app-review-deep-report/runs": {
            "post": {
                "operationId": "runs-sync-nexgenwatch-app-review-deep-report",
                "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/nexgenwatch~app-review-deep-report/run-sync": {
            "post": {
                "operationId": "run-sync-nexgenwatch-app-review-deep-report",
                "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": [
                    "app_id",
                    "store"
                ],
                "properties": {
                    "app_id": {
                        "title": "App ID",
                        "type": "string",
                        "description": "The app to report on. Apple: the numeric track id (e.g. 284882215). Google Play: the package name (e.g. com.spotify.music)."
                    },
                    "store": {
                        "title": "Store",
                        "enum": [
                            "apple",
                            "google_play"
                        ],
                        "type": "string",
                        "description": "Which public store to pull reviews from.",
                        "default": "apple"
                    },
                    "country": {
                        "title": "Country",
                        "type": "string",
                        "description": "Two-letter storefront country code (default us).",
                        "default": "us"
                    },
                    "language": {
                        "title": "Language",
                        "type": "string",
                        "description": "Two-letter language code, used for Google Play (default en).",
                        "default": "en"
                    },
                    "max_reviews": {
                        "title": "Maximum reviews",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Hard cap on public reviews fetched for the report (max 1000).",
                        "default": 1000
                    },
                    "max_themes": {
                        "title": "Maximum themes / complaints",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Maximum theme and complaint clusters returned.",
                        "default": 12
                    },
                    "trend_current_from": {
                        "title": "Trend: current period from",
                        "type": "string",
                        "description": "Optional ISO date (YYYY-MM-DD). Start of the current period for the trend comparison. If all four trend dates are empty, the report auto-splits reviews by median date.",
                        "default": ""
                    },
                    "trend_current_to": {
                        "title": "Trend: current period to",
                        "type": "string",
                        "description": "Optional ISO date (YYYY-MM-DD). End of the current period.",
                        "default": ""
                    },
                    "trend_prior_from": {
                        "title": "Trend: prior period from",
                        "type": "string",
                        "description": "Optional ISO date (YYYY-MM-DD). Start of the prior period compared against the current one.",
                        "default": ""
                    },
                    "trend_prior_to": {
                        "title": "Trend: prior period to",
                        "type": "string",
                        "description": "Optional ISO date (YYYY-MM-DD). End of the prior period.",
                        "default": ""
                    },
                    "proxy_configuration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify proxy settings; a fresh session is requested for every retry.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
