# Group product reviews into topics with evidence

**Use case:** 

Analyze a fictional review sample for pricing and support topics. Replace it with your English review export to get topic counts and exact supporting records. No scraping; keyword matches need human review.

## Input

```json
{
  "reviews": [
    {
      "product": "Sample product (fictional)",
      "text": "Pricing is expensive for our small team.",
      "date": "2026-09-01",
      "url": "https://example.com/reviews/sample"
    }
  ],
  "maximumChargeUsd": 2
}
```

## Output

```json
{
  "theme": {
    "label": "Topic",
    "format": "text"
  },
  "mentions": {
    "label": "Review mentions",
    "format": "number"
  },
  "newMentions": {
    "label": "Mentions since cutoff",
    "format": "number"
  },
  "opportunity": {
    "label": "Suggested investigation",
    "format": "text"
  },
  "evidence": {
    "label": "Source reviews",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [ReviewSignal — Competitor Review Topic Analysis](https://apify.com/exceptional_nugget/my-actor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/exceptional_nugget/my-actor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/exceptional_nugget/my-actor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
