---
title: "In-depth analysis articles with quality sorting"
description: "Get long-form analytical articles sorted by quality score with multiple content filters"
source: https://apitube.io/cookbook/in-depth-analysis-articles-with-quality-sorting
---

#### Input parameters

| Parameter            | Description                                    | Type    | Default | Required |
|:---------------------|:-----------------------------------------------|:--------|:--------|:---------|
| category.id          | Category filter.                               | string  |         | Yes      |
| sort.by              | Sort by characters count.                           | string  |         | Yes      |
| sort.order           | Descending order.                               | string  |         | Yes      |
| published_at.start   | Start date filter.                              | string  |         | Yes      |
| is_long_read         | Filter long-read articles (>=5 min).           | integer |         | Yes      |
| has_author           | Require attributed author.                      | integer |         | 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 | 20      | No       |

#### Workflow examples

##### Request for in-depth analysis articles:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?category.id=medtop:04000000&sort.by=characters_count&sort.order=desc&published_at.start=2024-01-01&api_key=YOUR_API_KEY"
```

##### Request for sentiment-based content discovery:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?title=artificial%20intelligence&sort.by=sentiment.overall.score&sort.order=desc&api_key=YOUR_API_KEY"
```

##### Request for multi-dimensional content ranking:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?category.id=medtop:13000000&source.rank.opr.min=6&sort.by=sentiment.overall.score&sort.order=desc&published_at.start=2023-01-01&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Get long-read articles](/cookbook/get-long-read-articles)
- [Sort by quality score](/cookbook/sort-articles-by-quality-score)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)
- [Get premium source articles](/cookbook/get-articles-from-premium-sources)
- [Get news with positive sentiment](/cookbook/get-positive-sentiment-news)

