---
title: "Multi-dimensional sentiment analysis with source filtering"
description: "Analyze sentiment across multiple organizations with high-quality sources and time range filtering"
source: https://apitube.io/cookbook/multi-dimensional-sentiment-analysis-with-source-filtering
---

#### Input parameters

| Parameter                  | Description                                    | Type    | Default | Required |
|:---------------------------|:-----------------------------------------------|:--------|:--------|:---------|
| sentiment.overall.score.min | Minimum sentiment score (0.5 = moderate positive). | float   |         | Yes      |
| category.id                | Category filter.                               | string  |         | Yes      |
| organization.name          | Multiple organizations (comma-separated).      | string  |         | Yes      |
| sort.by                    | Sort by sentiment score.                       | string  |         | Yes      |
| sort.order                 | Descending order.                               | string  |         | Yes      |
| api_key                    | Your API key.                                  | string  |         | Yes      |
| per_page                   | Maximum number of articles to retrieve.       | integer | 20      | No       |

#### Workflow examples

##### Request for multi-dimensional sentiment analysis:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?sentiment.overall.score.min=0.5&category.id=medtop:04000000&organization.name=Tesla,Google&sort.by=sentiment.overall.score&sort.order=desc&api_key=YOUR_API_KEY"
```

##### Request for comparative sentiment analysis across markets:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?sentiment.overall.polarity=negative&source.country.code=us,gb,de&category.id=medtop:07000000&published_at.start=2023-01-01&published_at.end=2023-12-31&api_key=YOUR_API_KEY"
```

##### Request for sentiment divergence analysis by source type:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=climate%20change&sentiment.overall.score.min=0.6&published_at.start=2023-01-01&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Find articles with mixed sentiment](/cookbook/find-articles-with-mixed-sentiment)
- [Get news with positive sentiment](/cookbook/get-positive-sentiment-news)
- [Get articles about Elon Musk with positive sentiment](/cookbook/positive-articles-about-elon-musk)
- [Competitive intelligence analysis](/cookbook/competitive-intelligence-analysis-with-sentiment-tracking)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)

