# Acme Mobile: release reaction report

**Use case:** 

Compare ratings and complaint signals before and after an app release in a ready-to-run, version-aware customer reaction report.

## Input

```json
{
  "appName": "Acme Mobile",
  "releases": [
    {
      "version": "2.0.0",
      "releaseDate": "2026-08-01",
      "releaseNotes": "New sync engine"
    }
  ],
  "reviews": [
    {
      "text": "Stable and fast.",
      "rating": 5,
      "date": "2026-07-25",
      "version": "1.9.0"
    },
    {
      "text": "Good performance.",
      "rating": 4,
      "date": "2026-07-27",
      "version": "1.9.0"
    },
    {
      "text": "Easy to use.",
      "rating": 5,
      "date": "2026-07-29",
      "version": "1.9.0"
    },
    {
      "text": "Crashes after update.",
      "rating": 1,
      "date": "2026-08-03",
      "version": "2.0.0"
    },
    {
      "text": "Login freezes.",
      "rating": 2,
      "date": "2026-08-04",
      "version": "2.0.0"
    },
    {
      "text": "Sync is broken.",
      "rating": 1,
      "date": "2026-08-06",
      "version": "2.0.0"
    }
  ],
  "windowDays": 14,
  "maxReviews": 5000
}
```

## Output

```json
{
  "rowType": {
    "label": "Row type",
    "format": "string"
  },
  "appName": {
    "label": "App name",
    "format": "string"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "releaseDate": {
    "label": "Release date",
    "format": "string"
  },
  "conclusion": {
    "label": "Conclusion",
    "format": "string"
  },
  "ratingBefore": {
    "label": "Rating before",
    "format": "number"
  },
  "ratingAfter": {
    "label": "Rating after",
    "format": "number"
  },
  "ratingChange": {
    "label": "Change",
    "format": "number"
  },
  "reviewCountBefore": {
    "label": "Review count before",
    "format": "integer"
  },
  "reviewCountAfter": {
    "label": "Review count after",
    "format": "integer"
  },
  "emergingComplaints": {
    "label": "New issues",
    "format": "array"
  },
  "resolvedComplaints": {
    "label": "Resolved complaints",
    "format": "array"
  },
  "regressionSignals": {
    "label": "Regression signals",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Release source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [App Release Reaction Monitor — Reviews & Sentiment](https://apify.com/egeusta/app-release-customer-reaction-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/egeusta/app-release-customer-reaction-monitor.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/egeusta/app-release-customer-reaction-monitor.md

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).
