# Instagram Profile Bot Risk Checker

**Use case:** 

Check one Instagram profile URL for bot-risk score, engagement rate, profile ratios, confidence, and reason tags.

## Input

```json
{
  "usernames": [
    "instagram",
    "natgeo"
  ],
  "profileUrls": [
    {
      "url": "https://www.instagram.com/instagram/"
    }
  ],
  "maxProfiles": 1,
  "maxRecentPosts": 12,
  "proxyGroup": "AUTO",
  "countryCode": "US"
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "following": {
    "label": "Following",
    "format": "number"
  },
  "postsCount": {
    "label": "Posts",
    "format": "number"
  },
  "recentPostsSampled": {
    "label": "Posts sampled",
    "format": "number"
  },
  "engagementRate": {
    "label": "Engagement rate",
    "format": "number"
  },
  "followerFollowingRatio": {
    "label": "Follower/following",
    "format": "number"
  },
  "botScore": {
    "label": "Bot score",
    "format": "number"
  },
  "riskLevel": {
    "label": "Risk",
    "format": "text"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "reasonTags": {
    "label": "Reasons",
    "format": "text"
  },
  "sampledAt": {
    "label": "Sampled at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Bot Detector](https://apify.com/automation-lab/instagram-bot-detector) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/instagram-bot-detector) to learn more, explore other use cases, and run it yourself.