---
title: "Get articles from premium sources"
description: "Filter articles from high-quality premium sources with OPR >= 6"
source: https://apitube.io/cookbook/get-articles-from-premium-sources
---

#### Input parameters

| Parameter          | Description                                    | Type    | Default | Required |
|:-------------------|:-----------------------------------------------|:--------|:--------|:---------|
| is_premium_source  | Filter premium sources with OPR >= 6.          | 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 premium source articles:

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

##### Request for verified source articles:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?is_verified_source=1&published_at.start=2024-01-01&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Get recent articles from top tech blogs](/cookbook/get-recent-articles-from-top-tech-blogs)
- [Get news from specific publications](/cookbook/recent-articles-from-nyt)
- [Get news from Wired](/cookbook/get-latest-news-from-wired-and-export-as-xml)
- [Get news from CNN](/cookbook/get-latest-news-from-cnn-in-politics-technology-and-business-with-positive-or-neutral-sentiment)
- [Sort by quality score](/cookbook/sort-articles-by-quality-score)

