# Pinterest Search Results Scraper

**Use case:** 

Extract data on home decor trends from Pinterest. Get structured results including pins, images, descriptions, and engagement metrics.

## Input

```json
{
  "startUrl": "https://www.pinterest.com/search/pins/?q=Flowers&rs=typed",
  "keyword": "Home decor",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "pinner_username": {
    "label": "Pinner",
    "format": "text"
  },
  "board_name": {
    "label": "Board",
    "format": "text"
  },
  "like_count": {
    "label": "Likes",
    "format": "number"
  },
  "search_keyword": {
    "label": "Keyword",
    "format": "text"
  }
}
```

## About this Actor

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