---
title: "Get articles with high-quality images"
description: "Filter articles with high-resolution images suitable for professional use"
source: https://apitube.io/cookbook/get-articles-with-high-quality-images
---

#### Input parameters

| Parameter      | Description                                    | Type    | Default | Required |
|:---------------|:-----------------------------------------------|:--------|:--------|:---------|
| has_hq_images  | Filter articles with high-quality images (width >= 1200px). | integer |         | Yes      |
| api_key        | Your API key.                                  | string  |         | Yes      |
| per_page       | Maximum number of articles to retrieve.       | integer | 20      | No       |

#### Workflow examples

##### Request for articles with high-quality images:

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

##### Request for Full HD images:

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

##### Request for 4K image galleries:

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

---

#### Related Examples

- [Get Instagram-ready content](/cookbook/get-instagram-ready-content)
- [Get news with large media](/cookbook/get-news-with-large-media)
- [Get news with specific image count](/cookbook/get-news-by-image-count)
- [Get news with small images](/cookbook/get-news-with-small-images)
- [Get articles with both images and videos](/cookbook/get-articles-with-both-images-and-videos)

