# Scrape Pinterest boards by URL

**Use case:** 

Extract all pins from specific Pinterest boards or profiles by URL. Structured pin data. Pay per result.

## Input

```json
{
  "searchQueries": [
    "minimalist bedroom"
  ],
  "searchScope": "boards",
  "startUrls": [
    {
      "url": "https://www.pinterest.com/search/boards/?q=interior%20design"
    }
  ],
  "maxResults": 5,
  "fetchDetails": false,
  "includeComments": false,
  "maxComments": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "repinCount": {
    "label": "Saves",
    "format": "number"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "url": {
    "label": "Pin",
    "format": "link"
  }
}
```

## About this Actor

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