# Pinterest Profile & Boards Scraper

**Use case:** 

Scrape any public Pinterest profile: follower counts, every board it owns, and the pins the creator published, with engagement attached.

## Input

```json
{
  "searchQueries": [
    "kitchen organization hacks",
    "capsule wardrobe autumn"
  ],
  "trendKeywords": [
    "home office",
    "meal prep"
  ],
  "boardUrls": [
    "https://www.pinterest.com/homedit/kitchen-decor-remodel/"
  ],
  "profiles": [
    "homedit"
  ],
  "pinUrls": [
    "https://www.pinterest.com/pin/53972895529306045/"
  ],
  "startUrls": [
    {
      "url": "https://www.pinterest.com/search/pins/?q=scandinavian%20living%20room"
    }
  ],
  "maxItems": 50,
  "maxPinsPerSource": 0,
  "pinType": "all",
  "minSaves": 0,
  "onlyWithOutboundLink": false,
  "relatedKeywordDepth": 1,
  "country": "US",
  "includeBoards": true
}
```

## Output

```json
{
  "resultType": {
    "label": "Type"
  },
  "boardName": {
    "label": "Board"
  },
  "username": {
    "label": "Username"
  },
  "fullName": {
    "label": "Name"
  },
  "boardUrl": {
    "label": "Board URL",
    "format": "link"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "link"
  },
  "pinCount": {
    "label": "Pins"
  },
  "followerCount": {
    "label": "Followers"
  },
  "boardCount": {
    "label": "Boards"
  },
  "ownerUsername": {
    "label": "Owner"
  }
}
```

## About this Actor

This example demonstrates how to use [Pinterest Trends & Pin Scraper - Keywords, Saves & Boards](https://apify.com/webdata_labs/pinterest-trends-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdata_labs/pinterest-trends-scraper) to learn more, explore other use cases, and run it yourself.