# Pinterest profile lookup with audience metrics

**Use case:** 

Extract public identity, audience counts, verification, website, and recent activity signals for one Pinterest profile.

## Input

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

## 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.