# Instagram Profiles Sports Brands Scraper

**Use case:** 

Scrape Instagram sports brand profiles with username, full name, profile URL, picture, follower and following counts, and bio. Export to JSON or CSV.

## Input

```json
{
  "usernames": [
    "nike",
    "adidas",
    "nba",
    "fcbarcelona",
    "realmadrid"
  ],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "profilePicUrl": {
    "label": "Profile Pic",
    "format": "image"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "fullName": {
    "label": "Full Name",
    "format": "text"
  },
  "id": {
    "label": "Profile ID",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "isPrivate": {
    "label": "Private",
    "format": "boolean"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "followsCount": {
    "label": "Following",
    "format": "number"
  },
  "postsCount": {
    "label": "Posts",
    "format": "number"
  },
  "isBusinessAccount": {
    "label": "Business",
    "format": "boolean"
  },
  "isProfessionalAccount": {
    "label": "Professional",
    "format": "boolean"
  },
  "businessCategoryName": {
    "label": "Category",
    "format": "text"
  },
  "biography": {
    "label": "Biography",
    "format": "text"
  },
  "highlightReelCount": {
    "label": "Highlights",
    "format": "number"
  },
  "igtvVideoCount": {
    "label": "IGTV Videos",
    "format": "number"
  },
  "joinedRecently": {
    "label": "Joined Recently",
    "format": "boolean"
  },
  "hasChannel": {
    "label": "Has Channel",
    "format": "boolean"
  },
  "businessEmail": {
    "label": "Business Email",
    "format": "text"
  },
  "businessPhoneNumber": {
    "label": "Business Phone",
    "format": "text"
  },
  "url": {
    "label": "Profile URL",
    "format": "link"
  },
  "externalUrl": {
    "label": "Website",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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