# Premier League Club Instagram Profiles (England)

**Use case:** 

Scrape Instagram profiles of England's top Premier League football clubs: followers, engagement, posts, and bios. Export to JSON, CSV, or Excel.

## Input

```json
{
  "urls": [
    "https://www.instagram.com/manchesterunited/",
    "https://www.instagram.com/manchestercity/",
    "https://www.instagram.com/liverpoolfc/",
    "https://www.instagram.com/chelseafc/",
    "https://www.instagram.com/arsenal/",
    "https://www.instagram.com/tottenhamhotspur/"
  ]
}
```

## Output

```json
{
  "account": {
    "label": "Account",
    "format": "string"
  },
  "full_name": {
    "label": "Full Name",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "integer"
  },
  "following": {
    "label": "Following",
    "format": "integer"
  },
  "posts_count": {
    "label": "Posts Count",
    "format": "integer"
  },
  "avg_engagement": {
    "label": "Average Engagement",
    "format": "number"
  },
  "is_verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "biography": {
    "label": "Biography",
    "format": "string"
  },
  "profile_url": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

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