# Pinterest Search URL Pin Results

**Use case:** 

Start from Pinterest search URLs and export matching pin results with titles, images, board details, creators, and destination links.

## Input

```json
{
  "keywords": [
    "home decor",
    "summer outfits"
  ],
  "searchUrls": [
    {
      "url": "https://www.pinterest.com/search/pins/?q=wedding%20centerpieces"
    },
    {
      "url": "https://www.pinterest.com/search/pins/?q=boho%20bedroom"
    }
  ],
  "maxResultsPerKeyword": 40,
  "includePins": true,
  "includeRelatedQueries": false
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "relatedQuery": {
    "label": "Related query",
    "format": "text"
  },
  "title": {
    "label": "Pin title",
    "format": "text"
  },
  "pinUrl": {
    "label": "Pin URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "destinationDomain": {
    "label": "Destination domain",
    "format": "text"
  },
  "creatorName": {
    "label": "Creator",
    "format": "text"
  },
  "boardName": {
    "label": "Board",
    "format": "text"
  },
  "extractedAt": {
    "label": "Extracted at",
    "format": "date"
  }
}
```

## About this Actor

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