---
title: "Sort articles by trust score"
description: "Get most credible and trustworthy articles sorted by credibility scorer"
source: https://apitube.io/cookbook/sort-articles-by-trust-score
---

#### Input parameters

| Parameter                  | Description                                    | Type    | Default | Required |
|:---------------------------|:-----------------------------------------------|:--------|:--------|:---------|
| sort.by                    | Sort by trust score.                            | string  |         | Yes      |
| sort.order                 | Sort order (desc for most trustworthy).         | string  |         | Yes      |
| source.rank.opr.min        | Minimum source rank (optional).                 | string  |         | No       |
| sentiment.overall.polarity | Sentiment 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 most trustworthy news sources:

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

##### Request for credible sources for research:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?sort.by=trust&source.rank.opr.min=6&sentiment.overall.polarity=neutral&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [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)
- [Get recent articles from top tech blogs](/cookbook/get-recent-articles-from-top-tech-blogs)

