# Scrape Pinterest Search Results

**Use case:** 

Scrape public Pinterest search results for a keyword and export pin URLs, titles, image URLs, thumbnails, positions, colors, and visible creator fields.

## Input

```json
{
  "queries": [
    "home decor"
  ],
  "maxResultsPerQuery": 25,
  "includePinDetails": false,
  "locale": "en-US",
  "country": "US",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query": {
    "label": "Search keyword",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "pinId": {
    "label": "Pin ID",
    "format": "text"
  },
  "pinUrl": {
    "label": "Pin URL",
    "format": "link"
  },
  "title": {
    "label": "Title / alt text",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "link"
  },
  "thumbnailUrl": {
    "label": "Thumbnail URL",
    "format": "link"
  },
  "dominantColor": {
    "label": "Dominant color",
    "format": "text"
  },
  "creatorName": {
    "label": "Creator name",
    "format": "text"
  },
  "creatorUsername": {
    "label": "Creator username",
    "format": "text"
  },
  "creatorUrl": {
    "label": "Creator URL",
    "format": "link"
  },
  "boardName": {
    "label": "Board name",
    "format": "text"
  },
  "boardUrl": {
    "label": "Board URL",
    "format": "link"
  },
  "domain": {
    "label": "Linked domain",
    "format": "text"
  },
  "outboundUrl": {
    "label": "Outbound URL",
    "format": "link"
  },
  "repinCount": {
    "label": "Repins",
    "format": "number"
  },
  "saveCount": {
    "label": "Saves",
    "format": "number"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "text"
  }
}
```

## About this Actor

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