Pinterest Image Scraper
Pricing
from $10.00 / 1,000 results
Pinterest Image Scraper
Scrape high-resolution images from Pinterest via keyword search, public boards, or individual pins. Results are pushed to an Apify dataset with full metadata; optionally download the images themselves into the key-value store.
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Jamshaid Arif
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Pinterest Image Scraper —
Scrape high-resolution images from Pinterest via keyword search, public boards, or individual pins. Results are pushed to an Apify dataset with full metadata; optionally download the images themselves into the key-value store.
Features
| Capability | Description |
|---|---|
| Keyword search | Find images matching any search term |
| Board scraping | Extract all images from a public board or profile |
| Pin scraping | Grab the full-res image from a single pin URL |
| Resolution filter | Skip images below a minimum width/height |
| Image download | Persist images in the key-value store for direct access |
| Rate-limit control | Configurable delay between requests |
| Proxy support | Use Apify proxy for large-scale runs |
Input Parameters
| Field | Type | Default | Description |
|---|---|---|---|
mode | string | search | search, board, or pin |
searchQuery | string | — | Keywords (required for search mode) |
url | string | — | Pinterest URL (required for board / pin) |
maxImages | integer | 25 | Max images to collect (1 – 500) |
minWidth | integer | 0 | Min image width in px |
minHeight | integer | 0 | Min image height in px |
downloadImages | boolean | false | Store images in key-value store |
requestDelay | number | 1.0 | Seconds between requests |
proxyConfiguration | object | — | Apify proxy settings |
Example Input
{"mode": "search","searchQuery": "minimalist architecture","maxImages": 50,"minWidth": 800,"minHeight": 600,"downloadImages": true,"requestDelay": 1.5}
Output
Each record in the dataset contains:
{"imageUrl": "https://i.pinimg.com/originals/…","sourceUrl": "","title": "minimalist architecture","resolution": "1200x800","width": 1200,"height": 800,"domain": "i.pinimg.com","kvStoreKey": "img_0000_a3f1b2c4.jpg","fileSize": "142.3 KB","contentType": "image/jpeg"}
kvStoreKey,fileSize, andcontentTypeare only present whendownloadImagesis enabled.
A RUN_SUMMARY key is also written to the key-value store with totals.
Usage via Apify API
curl -X POST "https://api.apify.com/v2/acts/<YOUR_ACTOR_ID>/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"mode": "board","url": "https://www.pinterest.com/username/board-name/","maxImages": 30}'
MIT