Pinterest Image Downloader avatar

Pinterest Image Downloader

Pricing

from $2.99 / 1,000 images

Go to Apify Store
Pinterest Image Downloader

Pinterest Image Downloader

Download high-quality images from Pinterest by keyword search or pin URLs, save images in the key-value store, and record image metadata in the dataset.

Pricing

from $2.99 / 1,000 images

Rating

0.0

(0)

Developer

w3crawler

w3crawler

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Downloads high-quality images from Pinterest pins via keyword search or specific pin URLs. Saves images to Apify Key-Value Store and optionally records metadata (title, pinner, board, dimensions) in the dataset — ideal for building image datasets, creative asset libraries, and visual content research.

Features

  • Two modes — search by keyword or provide specific pin URLs
  • Multiple quality options — original, 736px, 474px, or 236px wide
  • Rich metadata — title, description, hashtags, pinner, board, dominant color, engagement stats
  • Key-Value Store download — images saved as binary files with their pin ID as key
  • Dataset metadata — optionally record image metadata alongside the KV store download
  • Cloud-ready — runs on Apify with scheduling, optional proxy configuration, and webhook support

Use Cases

  • Building image datasets for machine learning training
  • Creative asset collection and mood board building
  • Visual content research and trend analysis
  • Downloading pin images for offline use or design projects

Input

FieldTypeDefaultRequiredDescription
modestringsearchsearch to find images by keyword, or pinUrls to download specific pins.
querystring—Search keyword to find pins. Used when mode is search.
pinUrlsarray—List of Pinterest pin URLs to download. Used when mode is pinUrls.
maxItemsinteger50Maximum number of images to download (up to 500).
imageQualitystringoriginalImage quality: original, 736x, 474x, or 236x.
saveToDatasetbooleantrueAlso save image metadata to the dataset.
proxyConfigurationobjectdirect connectionOptional proxy settings. Set useApifyProxy to true when needed.

Output

Each downloaded image entry includes:

FieldDescription
pinIdPinterest pin ID
titlePin title
descriptionPin description text
altTextImage alt text
hashtagsArray of hashtags
pinUrlFull URL to the pin
destinationUrlExternal link destination
imageUrlURL of the downloaded image
imageQualityQuality/size selected (original, 736x, etc.)
imageWidthImage width in pixels
imageHeightImage height in pixels
imageOrigUrlOriginal resolution image URL
image736Url736px wide image URL
image474Url474px wide image URL
image236Url236px wide image URL
dominantColorDominant color hex code
savesNumber of saves/repins
likeCountNumber of likes
commentCountNumber of comments
pinnerIdPinner's user ID
pinnerUsernamePinner's Pinterest username
pinnerFullNamePinner's display name
boardIdBoard ID the pin belongs to
boardNameBoard name
boardUrlFull URL to the board
sourceDomainSource domain of the original content
kvStoreKeyKey under which the image is saved in KV Store
downloadedWhether the image was successfully downloaded
createdAtPin creation timestamp
scrapedAtISO 8601 timestamp of scrape

Sample Output

{
"pinId": "135792468",
"title": "Minimalist Nordic Living Room",
"description": "Clean lines and neutral tones for a calm home.",
"pinUrl": "https://www.pinterest.com/pin/135792468/",
"imageUrl": "https://i.pinimg.com/originals/12/34/56/123456.jpg",
"imageQuality": "original",
"imageWidth": 1080,
"imageHeight": 1350,
"dominantColor": "#F5F5F0",
"saves": 4200,
"pinnerUsername": "homedecorinspo",
"boardName": "Living Room Ideas",
"kvStoreKey": "image_135792468",
"downloaded": true,
"scrapedAt": "2026-05-21T10:00:00.000Z"
}

Notes

  • KV Store: Downloaded images are stored in Apify Key-Value Store under the key image_<pinId>. Access via the Apify Console or API.
  • Proxy: Direct connections are used by default. You can enable Apify Proxy with proxyConfiguration: { "useApifyProxy": true }; the dataset records whether a proxy was actually configured.
  • Image quality: original provides the highest resolution available on Pinterest (varies per pin). Use 736x for a good balance of quality and file size.
  • Scheduling: Use Apify Scheduler to regularly collect new images for a specific search query.