# Instagram Profile Scraper Pro (`powerful_bachelor/instagram-profile-scraper-pro`) Actor

📊 Instagram Profile Scraper Pro extracts detailed data like engagement rate, followers, profile pic, and more from Instagram profiles! Perfect for influencers, marketers, and analysts. Export data in multiple formats and gain deep insights easily! 🚀

- **URL**: https://apify.com/powerful\_bachelor/instagram-profile-scraper-pro.md
- **Developed by:** [Powerful Bachelor](https://apify.com/powerful_bachelor) (community)
- **Categories:** Social media, Lead generation
- **Stats:** 503 total users, 1 monthly users, 100.0% runs succeeded, 15 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

$29.99/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Instagram Profile Scraper Pro 📊

### 🌐 Overview

The **Instagram Profile Scraper Pro** is an advanced tool designed to extract comprehensive data from any public Instagram profile. From engagement metrics to detailed profile information, this scraper provides a full spectrum of insights to help you analyze and track Instagram profiles efficiently.

### ❓ Why Use Instagram Profile Scraper Pro?

In today's social media landscape, having accurate and detailed insights into Instagram profiles is invaluable. Whether you're a marketer, influencer, or data analyst, **Instagram Profile Scraper Pro** offers numerous benefits:

- **Engagement Insights**: Understand how users are interacting with profiles by tracking engagement rates.
- **Brand & Influencer Monitoring**: Analyze the performance of any Instagram profile, including follower growth, content engagement, and more.
- **Competitive Benchmarking**: Compare competitors’ Instagram profiles by collecting detailed follower, engagement, and content data.
- **Data-Driven Strategy**: Use metrics like average comments, likes, and views to inform your Instagram marketing and content strategies.

### 🛠️ Features

- **Comprehensive Data Extraction**: Scrape crucial profile details such as:
  - Engagement rate
  - High-definition profile picture (HD)
  - Followers count
  - Follows count
  - Average comments
  - Average likes
  - Average views on videos
  - Profile category name
  - Bio and website link
  - Recent post details (likes, comments, views)
- **Multi-Profile Scraping**: Gather data from multiple profiles in one go.
- **User-Friendly**: Easy to configure and use, designed for both beginners and professionals.
- **Data Export Options**: Export your scraped data in popular formats like JSON, CSV, Excel, and more for easy analysis.
- **Efficient Performance**: Optimized for speed and accuracy, ensuring reliable data extraction.

### 📝 How to Use

1. **Sign Up**: Register for an account on Apify.
2. **Access the Scraper**: Visit the Instagram Profile Scraper Pro on the platform.
3. **Configuration**: Input the Instagram usernames of the profiles you'd like to scrape.
4. **Run the Scraper**: Start the scraping process and let the tool extract all the profile data.
5. **Download Data**: Export the collected data in your preferred format (JSON, CSV, etc.) once the scraping is complete.

### 🚀 Getting Started

Excited to uncover detailed Instagram profile insights? [Start using the Instagram Profile Scraper Pro today](https://apify.com/powerful_bachelor/instagram-profile-scraper-pro) and supercharge your Instagram analytics.
and supercharge your Instagram analytics.

# Actor input Schema

## `usernames` (type: `array`):

Provide instagram usernames of the accounts you want to scrape from.

## Actor input object example

```json
{
  "usernames": [
    "google",
    "dell"
  ]
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "usernames": [
        "google",
        "dell"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("powerful_bachelor/instagram-profile-scraper-pro").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "usernames": [
        "google",
        "dell",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("powerful_bachelor/instagram-profile-scraper-pro").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "usernames": [
    "google",
    "dell"
  ]
}' |
apify call powerful_bachelor/instagram-profile-scraper-pro --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=powerful_bachelor/instagram-profile-scraper-pro",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/MdBVQ5fJQkkAO6wjj/builds/HdC4kWbbPSUoXGalQ/openapi.json
