---
title: "Get articles with landscape-oriented images"
description: "Filter articles with landscape-oriented images ideal for headers and banners"
source: https://apitube.io/cookbook/get-articles-with-landscape-oriented-images
---

#### Input parameters

| Parameter          | Description                                    | Type    | Default | Required |
|:-------------------|:-----------------------------------------------|:--------|:--------|:---------|
| is_landscape_media | Filter articles with landscape-oriented images (width > height). | integer |         | Yes      |
| has_fullhd_images  | Filter articles with Full HD images (width >= 1920px). | integer |         | No       |
| api_key            | Your API key.                                  | string  |         | Yes      |
| per_page           | Maximum number of articles to retrieve.       | integer | 20      | No       |

#### Workflow examples

##### Request for landscape-oriented images:

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

##### Request for portrait-oriented images:

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

---

#### Related Examples

- [Get articles with high-quality images](/cookbook/get-articles-with-high-quality-images)
- [Get Instagram-ready content](/cookbook/get-instagram-ready-content)
- [Get news with large media](/cookbook/get-news-with-large-media)
- [Get articles with mobile-optimized images](/cookbook/get-articles-with-mobile-optimized-images)
- [Get articles with consistent image sizes](/cookbook/get-articles-with-consistent-image-sizes)

