---
title: "Get Instagram-ready content"
description: "Find articles with images optimized for Instagram sharing"
source: https://apitube.io/cookbook/get-instagram-ready-content
---

#### Input parameters

| Parameter          | Description                                    | Type    | Default | Required |
|:-------------------|:-----------------------------------------------|:--------|:--------|:---------|
| is_instagram_ready | Filter articles with Instagram-ready images (1080px+, square/4:5 ratio). | 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 Instagram-ready content:

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

##### Request for Twitter Card optimized content:

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

##### Request for Open Graph compatible images:

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

---

#### Related Examples

- [Get articles with high-quality images](/cookbook/get-articles-with-high-quality-images)
- [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 media volume](/cookbook/get-news-articles-with-media-volume)
- [Sort by engagement score](/cookbook/sort-articles-by-engagement-score)

