# Monitor Pinterest profile audience and activity

**Use case:** 

Schedule recurring extraction of profile metrics plus recent pins and boards for influencer or competitor monitoring.

## Input

```json
{
  "profiles": [
    "nasa",
    "pinterest",
    "etsy"
  ],
  "maxRecentPins": 5,
  "maxRecentBoards": 5,
  "maxConcurrency": 3
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "string"
  },
  "fullName": {
    "label": "Name",
    "format": "string"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "string"
  },
  "followerCount": {
    "label": "Followers",
    "format": "integer"
  },
  "followingCount": {
    "label": "Following",
    "format": "integer"
  },
  "pinCount": {
    "label": "Pins",
    "format": "integer"
  },
  "boardCount": {
    "label": "Boards",
    "format": "integer"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "websiteUrl": {
    "label": "Website",
    "format": "string"
  },
  "lastPinSavedAt": {
    "label": "Latest pin signal",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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