# Analyze a fashion Pinterest profile

**Use case:** 

Capture H&M public Pinterest profile counters, boards, and recent visual content for fashion trend and competitor analysis.

## Input

```json
{
  "profileUrls": [
    {
      "url": "https://www.pinterest.com/hm/"
    }
  ],
  "usernames": [],
  "includeBoards": true,
  "maxBoardsPerProfile": 5,
  "includePins": true,
  "maxPinsPerProfile": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "fullName": {
    "label": "Full name",
    "format": "text"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "followerCount": {
    "label": "Followers",
    "format": "number"
  },
  "followingCount": {
    "label": "Following",
    "format": "number"
  },
  "pinCount": {
    "label": "Pins",
    "format": "number"
  },
  "boardCount": {
    "label": "Boards",
    "format": "number"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "profileDescription": {
    "label": "Profile description",
    "format": "text"
  },
  "boards": {
    "label": "Boards",
    "format": "object"
  },
  "recentPins": {
    "label": "Recent pins",
    "format": "object"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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