---
title: "Get articles with mobile-optimized images"
description: "Filter articles with images optimized for mobile devices (320-800px)"
source: https://apitube.io/cookbook/get-articles-with-mobile-optimized-images
---

#### Input parameters

| Parameter                  | Description                                    | Type    | Default | Required |
|:---------------------------|:-----------------------------------------------|:--------|:--------|:---------|
| has_mobile_optimized_images | Filter articles with mobile-optimized images (320-800px). | integer |         | Yes      |
| api_key                    | Your API key.                                  | string  |         | Yes      |
| per_page                   | Maximum number of articles to retrieve.       | integer | 20      | No       |

#### Workflow examples

##### Request for mobile-optimized images:

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

##### Request for thumbnail images:

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

---

#### Related Examples

- [Get articles with landscape-oriented images](/cookbook/get-articles-with-landscape-oriented-images)
- [Get Instagram-ready content](/cookbook/get-instagram-ready-content)
- [Get articles with high-quality images](/cookbook/get-articles-with-high-quality-images)
- [Get news with small images](/cookbook/get-news-with-small-images)
- [Get news with specific image count](/cookbook/get-news-by-image-count)

