# Check reviews for repeat hardware faults

**Use case:** 

Read a product's critical reviews and separate the repeat hardware failures from the one-off grumbles. Every fault is shown with the customers' own quotes, so you can see the evidence rather than a score.

## Input

```json
{
  "maxReviews": 100,
  "reviewsScraperActor": "junglee/amazon-reviews-scraper",
  "reviews": [
    {
      "userId": "R1",
      "date": "2026-03-02",
      "ratingScore": 2,
      "reviewDescription": "The left earbud stopped charging after about four months. Case shows it at 100% but it is dead."
    },
    {
      "userId": "R2",
      "date": "2026-03-19",
      "ratingScore": 1,
      "reviewDescription": "Left bud stopped charging completely around month five. Right one is fine."
    },
    {
      "userId": "R3",
      "date": "2026-04-07",
      "ratingScore": 2,
      "reviewDescription": "Battery died on the left earbud after four months of light use. Very disappointing."
    },
    {
      "userId": "R4",
      "date": "2026-02-11",
      "ratingScore": 1,
      "reviewDescription": "Case hinge snapped in my pocket within a few weeks. The plastic is far too thin."
    },
    {
      "userId": "R5",
      "date": "2026-05-02",
      "ratingScore": 2,
      "reviewDescription": "The hinge on the charging case broke after about three weeks of normal use."
    },
    {
      "userId": "R6",
      "date": "2026-05-14",
      "ratingScore": 1,
      "reviewDescription": "Hinge cracked and now the case will not stay shut at all."
    },
    {
      "userId": "R7",
      "date": "2026-01-30",
      "ratingScore": 3,
      "reviewDescription": "Did not like the colour, it is more grey than silver in person."
    }
  ],
  "minCorroboration": 2,
  "productName": "Wireless Earbuds (example)",
  "linkUrl": "https://www.amazon.com/dp/B08EXAMPLE"
}
```

## Output

```json
{
  "defectPhrase": {
    "label": "Defect",
    "format": "string"
  },
  "distinctReviewers": {
    "label": "Reviewers",
    "format": "integer"
  },
  "exampleQuotes": {
    "label": "Verbatim quotes",
    "format": "array"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Review Defect Finder](https://apify.com/pradio/amazon-defect-ledger.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pradio/amazon-defect-ledger.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/pradio/amazon-defect-ledger.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).
