---
title: "Product review sentiment analysis with brand filtering"
description: "Analyze product reviews with brand filtering, sentiment score range, and time filtering"
source: https://apitube.io/cookbook/product-review-sentiment-analysis-with-brand-filtering
---

#### Input parameters

| Parameter                  | Description                                    | Type    | Default | Required |
|:---------------------------|:-----------------------------------------------|:--------|:--------|:---------|
| title                      | Search for review articles.                     | string  |         | Yes      |
| title                      | Search query for brand/product reviews.         | string  |         | Yes      |
| sentiment.overall.score.min | Minimum sentiment score.                      | float   |         | Yes      |
| sentiment.overall.score.max | Maximum sentiment score.                      | float   |         | Yes      |
| published_at.start         | Start date filter.                              | string  |         | Yes      |
| sort.by                    | Sort by sentiment score.                       | string  |         | Yes      |
| source.rank.opr.min        | Minimum source quality.                         | string  |         | Yes      |
| api_key                    | Your API key.                                  | string  |         | Yes      |
| per_page                   | Maximum number of articles to retrieve.       | integer | 25      | No       |

#### Workflow examples

##### Request for product review sentiment analysis:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=Samsung%20Galaxy%20review&sentiment.overall.score.min=-1.0&sentiment.overall.score.max=1.0&published_at.start=2023-01-01&sort.by=sentiment.overall.score&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Brand reputation analysis](/cookbook/brand-reputation-analysis-across-markets)
- [Product review sentiment analysis](/cookbook/product-review-sentiment-analysis-with-brand-filtering)
- [Multi-dimensional sentiment analysis](/cookbook/multi-dimensional-sentiment-analysis-with-source-filtering)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)
- [Sort by quality score](/cookbook/sort-articles-by-quality-score)

