# Instagram account creation date and country

**Use case:** 

Check when an Instagram account was created, where it is registered and how often it changed its username, from Instagram's About this account panel. Vet suppliers and spot fresh or relocated accounts. Needs a paid Apify plan: $0.49 per 1,000 profiles plus the About add-on at $3.49 per 1,000 on Starter, $2.99 on Scale and $2.49 on Business and above, charged only per panel returned.

## Input

```json
{
  "usernames": [
    "nasa",
    "google",
    "meta",
    "microsoft",
    "apple"
  ],
  "maxProfiles": 5,
  "maxPostDetails": 0,
  "includeAboutSection": true,
  "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`).
