---
title: "Find articles with mixed sentiment"
description: "Detect articles where title and body sentiment differ, useful for identifying clickbait or controversial framing"
source: https://apitube.io/cookbook/find-articles-with-mixed-sentiment
---

#### Input parameters

| Parameter         | Description                                    | Type    | Default | Required |
|:------------------|:-----------------------------------------------|:--------|:--------|:---------|
| sentiment.mixed   | Filter articles with mixed sentiment (title/body differ). | integer |         | Yes      |
| category.id       | Category filter (optional).                    | string  |         | No       |
| api_key           | Your API key.                                  | string  |         | Yes      |
| per_page          | Maximum number of articles to retrieve.       | integer | 20      | No       |

#### Workflow examples

##### Request for articles with mixed sentiment:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?sentiment.mixed=1&category.id=medtop:11000000&api_key=YOUR_API_KEY"
```

##### Request for consistent sentiment articles:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?sentiment.consistent=1&has_author=1&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Get news with positive sentiment](/cookbook/get-positive-sentiment-news)
- [Get articles with positive sentiment](/cookbook/get-latest-news-articles-with-positive-sentiment)
- [Get articles about Elon Musk with positive sentiment](/cookbook/positive-articles-about-elon-musk)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)
- [Sort by quality score](/cookbook/sort-articles-by-quality-score)

