# Scrape Instagram Stories From Public Profiles

**Use case:** 

Scrape public Instagram stories from one or more profiles and export timestamps, media URLs, audio flags, stickers, links, and user metadata.

## Input

```json
{
  "usernames": [
    "zuck",
    "natgeo"
  ],
  "resultsType": "stories",
  "limit": 50
}
```

## Output

```json
{
  "pk": {
    "label": "PK",
    "format": "text"
  },
  "taken_at": {
    "label": "Taken At",
    "format": "number"
  },
  "has_audio": {
    "label": "Has Audio",
    "format": "boolean"
  },
  "original_width": {
    "label": "Width",
    "format": "number"
  },
  "original_height": {
    "label": "Height",
    "format": "number"
  },
  "user.username": {
    "label": "User",
    "format": "text"
  },
  "user.id": {
    "label": "User ID",
    "format": "text"
  },
  "user.profile_pic_url": {
    "label": "User Pic",
    "format": "image"
  },
  "image_versions2.candidates": {
    "label": "Image Versions",
    "format": "array"
  },
  "video_versions": {
    "label": "Video Versions",
    "format": "array"
  },
  "story_feed_media": {
    "label": "Feed Media",
    "format": "array"
  },
  "story_link_stickers": {
    "label": "Link Stickers",
    "format": "array"
  }
}
```

## About this Actor

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