# Export Instagram posts by date range

**Use case:** 

Pull Instagram posts from an exact date range. Schedule daily runs to collect only new posts, or backfill a month of content.

## Input

```json
{
  "usernames": [
    "redbull",
    "gopro"
  ],
  "maxPosts": 100,
  "sinceDate": "2026-06-01",
  "untilDate": "2026-06-30"
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "post_type": {
    "label": "Type",
    "format": "text"
  },
  "taken_at": {
    "label": "Posted at",
    "format": "date"
  },
  "permalink": {
    "label": "Link",
    "format": "link"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "like_count": {
    "label": "Likes",
    "format": "number"
  },
  "comment_count": {
    "label": "Comments",
    "format": "number"
  },
  "view_count": {
    "label": "Views",
    "format": "number"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "array"
  },
  "mentions": {
    "label": "Mentions",
    "format": "array"
  },
  "is_paid_partnership": {
    "label": "Paid partnership",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Posts & Reels Scraper](https://apify.com/intropix/instagram-posts-reels-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/intropix/instagram-posts-reels-scraper) to learn more, explore other use cases, and run it yourself.