---
title: "Get articles with both images and videos"
description: "Filter articles that contain both images and videos for rich multimedia content"
source: https://apitube.io/cookbook/get-articles-with-both-images-and-videos
---

#### Input parameters

| Parameter    | Description                                    | Type    | Default | Required |
|:-------------|:-----------------------------------------------|:--------|:--------|:---------|
| is_media_rich | Filter articles with both images and videos.  | 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 media-rich articles:

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

##### Request for multimedia-rich content:

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

##### Request for rich media content curation:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?media.images.count=3&media.videos.count=1&category.id=medtop:13000000&published_at.start=2023-01-01&sort.by=published_at&sort.order=desc&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Get articles with consistent image sizes](/cookbook/get-articles-with-consistent-image-sizes)
- [Get news with media volume](/cookbook/get-news-articles-with-media-volume)
- [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)

