# Bulk Download Pinterest Board Images (All Sizes)

**Use case:** 

Bulk download Pinterest board images in 236x, 474x, 736x, and original. Agencies grab thousands of pins fast. How to extract every image at full resolution?

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.pinterest.com/designmilk/interior-design-123456/"
    }
  ],
  "maxResults": 1000,
  "includeComments": false,
  "maxComments": 10,
  "maxTotalChargeUsd": 50
}
```

## Output

```json
{
  "id": {
    "label": "Pin ID",
    "format": "string"
  },
  "url": {
    "label": "Pin URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "images.orig.url": {
    "label": "Original Image",
    "format": "image"
  },
  "videos": {
    "label": "Video",
    "format": "object"
  },
  "saves": {
    "label": "Saves",
    "format": "integer"
  },
  "like_count": {
    "label": "Likes",
    "format": "integer"
  },
  "repin_count": {
    "label": "Repins",
    "format": "integer"
  },
  "comment_count": {
    "label": "Comments",
    "format": "integer"
  },
  "share_count": {
    "label": "Shares",
    "format": "integer"
  },
  "favorite_user_count": {
    "label": "Favorites",
    "format": "integer"
  },
  "pinner.username": {
    "label": "Pinner",
    "format": "string"
  },
  "pinner.full_name": {
    "label": "Pinner Name",
    "format": "string"
  },
  "pinner.avatar_url": {
    "label": "Avatar",
    "format": "string"
  },
  "board.id": {
    "label": "Board ID",
    "format": "string"
  },
  "board.name": {
    "label": "Board Name",
    "format": "string"
  },
  "board.url": {
    "label": "Board URL",
    "format": "string"
  },
  "board.pin_count": {
    "label": "Board Pins",
    "format": "integer"
  },
  "board.follower_count": {
    "label": "Board Followers",
    "format": "integer"
  },
  "board.privacy": {
    "label": "Privacy",
    "format": "string"
  },
  "is_product_pin": {
    "label": "Product",
    "format": "boolean"
  }
}
```

## About this Actor

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