> For the complete documentation index, see [llms.txt](https://docs.cloutly.com/reviews-sdk-for-marketplace-websites/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cloutly.com/reviews-sdk-for-marketplace-websites/business-api/get-business-insights.md).

# Get Review Insights

## GET /businesses/{businessId}/review-insights

Pull insight summaries for a business.

### Request

```
GET https://marketplace.cloutly.com/api/v2/businesses/{businessId}/review-insights
```

### Response

```json
{
  "topInsights": [
    {
      "category": "Food",
      "topic": "Overcooked Pasta",
      "mentions": 7,
      "label": "7 people complained about the pasta being cooked.",
      "sentiment": "negative"
    }
  ],
  "recentInsights": [
    {
      "category": "Food",
      "topic": "Overcooked Pasta",
      "mentions": 7,
      "label": "7 people complained about the pasta being cooked.",
      "sentiment": "negative"
    }
  ],
  "statistics": {
    "totalReviews": 140,
    "averageRating": 4.2,
    "averageRatingTrend": -2.1
  }
}
```

### Notes

* `recentInsights` covers recent time windows.
* `topInsights` is all-time aggregate insight data.
