# Audit Fashion Influencer Profiles for Brand Partnerships

**Use case:** 

Gain deep insights into potential fashion influencer partners by scraping their full profile data, including engagement metrics and top posts. This helps brands

## Input

```json
{
  "username": "chiaraferragni",
  "maxPosts": 50,
  "cookies": "[{\"name\":\"sessionid\",\"value\":\"your_session_id\",\"domain\":\".instagram.com\",\"path\":\"/\",\"secure\":true,\"httpOnly\":true}]",
  "sessionName": "my_instagram_session"
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "post_url": {
    "label": "Post URL",
    "format": "string"
  },
  "post_type": {
    "label": "Type",
    "format": "string"
  },
  "description": {
    "label": "Caption",
    "format": "string"
  },
  "like_count": {
    "label": "Likes",
    "format": "integer"
  },
  "comment_count": {
    "label": "Comments",
    "format": "integer"
  },
  "view_count": {
    "label": "Views",
    "format": "integer"
  },
  "pub_date": {
    "label": "Published",
    "format": "string"
  },
  "media_urls": {
    "label": "Media urls",
    "format": "array"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "string"
  },
  "authorMeta.full_name": {
    "label": "Name",
    "format": "string"
  },
  "authorMeta.followers_count": {
    "label": "Followers",
    "format": "integer"
  },
  "authorMeta.is_verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "authorMeta.is_business": {
    "label": "Business",
    "format": "boolean"
  },
  "authorMeta.external_url": {
    "label": "External url",
    "format": "string"
  },
  "authorMeta.category": {
    "label": "Category",
    "format": "string"
  }
}
```

## About this Actor

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