# Build an Instagram Stories JSON API Feed

**Use case:** 

Create a JSON-ready Instagram Stories feed for apps and automations. Fetch active public Stories in bulk with media URLs, timestamps, and metadata.

## Input

```json
{
  "usernames": [
    "natgeo",
    "nasa",
    "bbcnews"
  ]
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "id": {
    "label": "Story ID",
    "format": "text"
  },
  "pk": {
    "label": "Story PK",
    "format": "number"
  },
  "taken_at": {
    "label": "Taken at (Unix)",
    "format": "number"
  },
  "expiring_at": {
    "label": "Expiring at (Unix)",
    "format": "number"
  },
  "media_type": {
    "label": "Media type",
    "format": "number"
  },
  "has_audio": {
    "label": "Has audio",
    "format": "boolean"
  },
  "video_duration": {
    "label": "Video duration (seconds)",
    "format": "number"
  },
  "code": {
    "label": "Shortcode",
    "format": "text"
  },
  "original_width": {
    "label": "Width",
    "format": "number"
  },
  "original_height": {
    "label": "Height",
    "format": "number"
  },
  "image_versions2": {
    "label": "Image variants",
    "format": "object"
  },
  "video_versions": {
    "label": "Video variants",
    "format": "array"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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