Pinterest Media Scraper avatar
Pinterest Media Scraper

Pricing

from $1.50 / 1,000 media

Go to Apify Store
Pinterest Media Scraper

Pinterest Media Scraper

Developed by

Simon

Simon

Maintained by Community

Scrape Pinterest images, videos, GIFS and carousel (slide) images with this actor!

0.0 (0)

Pricing

from $1.50 / 1,000 media

0

2

2

Last modified

6 minutes ago

Pinterest Media Downloader

Extract any media from Pinterest effortlessly

Pinterest Media Downloader is an Apify Actor that provides a powerful solution for accessing all types of Pinterest content. This comprehensive media extraction service handles the complexities of Pinterest's platform, delivering clean media URLs directly to your dataset.

Features

  • ✅ Download high-resolution images from individual pins
  • ✅ Extract video content including reels and standard videos
  • ✅ Save animated GIFs in their original quality
  • ✅ Retrieve multi-image carousel posts with all contained media items
  • ✅ Process Pinterest media regardless of content type or format
  • ✅ Built-in proxy support to avoid IP blocking
  • ✅ Structured output with metadata and error handling

Supported Media Types

  • Images: High-resolution photos and graphics
  • Videos: Standard videos and reels with 720p quality
  • Story Videos: Multi-page story content with video/image combinations
  • Carousels: Multi-image posts with all contained media

Input

The actor accepts Pinterest URLs through the startUrls field:

{
"startUrls": [
{ "url": "https://pinterest.com/pin/703756187938240/" },
{ "url": "https://pinterest.com/pin/123456789012345/" }
],
"proxyConfiguration": { "useApifyProxy": true }
}

Supported URL format:

  • Individual pins only: https://pinterest.com/pin/{pin-id}/

Output

Each processed Pinterest URL produces a structured record in the dataset:

Single media extraction:

{
"url": "https://pinterest.com/pin/703756187938240/",
"status": "success",
"multi_media": 0,
"media": ["https://i.pinimg.com/originals/ab/cd/ef/image.jpg"],
"scrapedAt": "2025-01-15T10:30:45.123Z"
}

Multi-media content (carousels/stories):

{
"url": "https://pinterest.com/pin/123456789/",
"status": "success",
"multi_media": 1,
"media": [
"https://i.pinimg.com/originals/ab/cd/ef/image1.jpg",
"https://i.pinimg.com/originals/gh/ij/kl/image2.jpg"
],
"scrapedAt": "2025-01-15T10:30:45.123Z"
}

Error cases:

{
"url": "https://pinterest.com/pin/invalid/",
"status": "failed",
"error": "Invalid or unsupported Pinterest URL",
"scrapedAt": "2025-01-15T10:30:45.123Z"
}