# Find who an Instagram account follows

**Use case:** 

Return the full list of accounts followed by a public profile, with handles and display names.

## Input

```json
{
  "usernames": [
    "acmecompany"
  ],
  "maxFollowingPerUser": 2000,
  "concurrency": 3
}
```

## Output

```json
{
  "queryUsername": {
    "label": "Account"
  },
  "username": {
    "label": "Follows"
  },
  "fullName": {
    "label": "Name"
  },
  "id": {
    "label": "User ID"
  },
  "isVerified": {
    "label": "Verified"
  },
  "isPrivate": {
    "label": "Private"
  },
  "profilePicUrl": {
    "label": "Profile Pic"
  }
}
```

## About this Actor

This example demonstrates how to use [Instagram Following Scraper](https://apify.com/goat255/instagram-following-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/goat255/instagram-following-scraper) to learn more, explore other use cases, and run it yourself.