# Instagram Scraper — Two Profiles Bulk Demo

**Use case:** 

Scrape posts/reels from two public Instagram profiles in one run. Bulk start_urls demo for creator monitoring.

## Input

```json
{
  "start_urls": [
    "https://www.instagram.com/instagram/",
    "https://www.instagram.com/natgeo/"
  ],
  "max_items": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "url": {
    "label": "Url",
    "format": "link"
  },
  "caption": {
    "label": "Caption",
    "format": "text"
  },
  "like_count": {
    "label": "Like Count",
    "format": "number"
  },
  "view_count": {
    "label": "View Count",
    "format": "number"
  },
  "play_count": {
    "label": "Play Count",
    "format": "number"
  },
  "comment_count": {
    "label": "Comment Count",
    "format": "number"
  },
  "share_count": {
    "label": "Share Count",
    "format": "number"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "posted_at": {
    "label": "Posted At",
    "format": "date"
  },
  "media_type": {
    "label": "Media Type",
    "format": "text"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/tictechid/vanzi-instagram-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
