# Pinterest User Profile Scraper

**Use case:** 

Scrape all pins from any Pinterest user profile: images, titles, descriptions, outbound links, domains and saves. Great for creator and competitor research.

## Input

```json
{
  "search": "home decor ideas",
  "startUrls": [
    "https://www.pinterest.com/marthastewart/"
  ],
  "maxItems": 100,
  "includeDetails": false,
  "includeUserInfoOnly": false
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "link": {
    "label": "Outbound Link",
    "format": "link"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "saves": {
    "label": "Saves",
    "format": "number"
  },
  "repinCount": {
    "label": "Repins",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "isVideo": {
    "label": "Video",
    "format": "boolean"
  },
  "url": {
    "label": "Pin URL",
    "format": "link"
  }
}
```

## About this Actor

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