# Scrape Pinterest pins by keyword

**Use case:** 

Search Pinterest for any keyword and export every matching pin — title, description, image, outbound link, destination domain, creator and board.

## Input

```json
{
  "operationMode": "searchPins",
  "searchPinsKeywords": [
    "home decor ideas"
  ],
  "searchPinsMaxItems": 25,
  "searchVideoPinsKeywords": [],
  "searchVideoPinsMaxItems": 0,
  "searchBoardsKeywords": [],
  "searchBoardsMaxItems": 0,
  "searchCreatorsKeywords": [],
  "searchCreatorsMaxItems": 0,
  "keywordSuggestionsKeywords": [],
  "keywordSuggestionsMaxItems": 0,
  "minReactions": 0,
  "onlyPinsWithLink": false,
  "excludePromotedPins": false,
  "linkDomainContains": "",
  "minCreatorFollowers": 0,
  "minBoardPins": 0
}
```

## Output

```json
{
  "result_type": {
    "label": "Result type",
    "format": "string"
  },
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "image_url": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "outbound_domain": {
    "label": "Outbound domain",
    "format": "string"
  },
  "reactions": {
    "label": "Reactions",
    "format": "integer"
  },
  "creator_username": {
    "label": "Creator username",
    "format": "string"
  },
  "creator_followers": {
    "label": "Creator followers",
    "format": "integer"
  },
  "board_name": {
    "label": "Board name",
    "format": "string"
  },
  "board_pin_count": {
    "label": "Board pin count",
    "format": "integer"
  },
  "suggestion": {
    "label": "Suggestion",
    "format": "string"
  },
  "pin_url": {
    "label": "Pin URL",
    "format": "string"
  }
}
```

## About this Actor

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