# Pinterest fashion trend scraper for style boards

**Use case:** 

Run a pinterest fashion trend scraper: outfit saves, repins, comments per pin. 30+ fields. How to spot next season's trends?

## Input

```json
{
  "searchQueries": [
    "2026 fashion trends",
    "summer outfit ideas",
    "street style"
  ],
  "maxResults": 100,
  "includeComments": false,
  "maxComments": 10,
  "proxyConfig": {
    "useApifyProxy": true
  },
  "maxTotalChargeUsd": 8
}
```

## Output

```json
{
  "url": {
    "label": "Url",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "images.236x.url": {
    "label": "Url"
  },
  "saves": {
    "label": "Saves",
    "format": "integer"
  },
  "like_count": {
    "label": "Like count",
    "format": "integer"
  },
  "repin_count": {
    "label": "Repin count",
    "format": "integer"
  },
  "comment_count": {
    "label": "Comment count",
    "format": "integer"
  },
  "share_count": {
    "label": "Share count",
    "format": "integer"
  },
  "pinner.username": {
    "label": "Username",
    "format": "string"
  },
  "pinner.full_name": {
    "label": "Full name",
    "format": "string"
  },
  "pinner.avatar_url": {
    "label": "Avatar url",
    "format": "string"
  },
  "board.name": {
    "label": "Name",
    "format": "string"
  },
  "board.url": {
    "label": "Url",
    "format": "string"
  },
  "is_product_pin": {
    "label": "Is product pin",
    "format": "boolean"
  },
  "site_name": {
    "label": "Site name",
    "format": "string"
  },
  "created_at": {
    "label": "Created at",
    "format": "string"
  }
}
```

## About this Actor

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