# Instagram profile API for any public account

**Use case:** 

Meta's Graph API covers only accounts you own. Get JSON for any public Instagram profile through the Apify API: send usernames, IDs or URLs, get followers, following, posts, bio, links, bio emails, related accounts and the 12 latest posts, same field names as the official Instagram Profile Scraper. Call it from code, n8n, Make, Zapier or an AI agent. $0.49 per 1,000 profiles plus $0.001 per run.

## Input

```json
{
  "usernames": [
    "openai",
    "github",
    "youtube",
    "spacex"
  ],
  "maxProfiles": 4,
  "maxPostDetails": 0,
  "includeAboutSection": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "fullName": {
    "label": "Name",
    "format": "string"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "followsCount": {
    "label": "Following",
    "format": "number"
  },
  "postsCount": {
    "label": "Posts",
    "format": "number"
  },
  "engagementRate": {
    "label": "Engagement rate",
    "format": "number"
  },
  "publicEmails": {
    "label": "Public emails",
    "format": "array"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "private": {
    "label": "Private",
    "format": "boolean"
  },
  "biography": {
    "label": "Biography",
    "format": "string"
  },
  "externalUrl": {
    "label": "External url",
    "format": "string"
  },
  "url": {
    "label": "Profile",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Profile Scraper · No Login · $0.49/1k](https://apify.com/alfalfa/instagram-profile-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/alfalfa/instagram-profile-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/alfalfa/instagram-profile-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`).
