Pinterest Pins Scraper avatar

Pinterest Pins Scraper

Pricing

from $7.00 / 1,000 pin scrapeds

Go to Apify Store
Pinterest Pins Scraper

Pinterest Pins Scraper

Extract Pinterest pins by keyword, board, user, or pin URL: image, title, description, board, pinner, saves, comments, outbound link, color and dimensions.

Pricing

from $7.00 / 1,000 pin scrapeds

Rating

0.0

(0)

Developer

Scrapers Lat

Scrapers Lat

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Categories

Share

Pinterest Pins Scraper

Pinterest Pins Scraper

Here is one real result, with every field the actor returns (long destinationUrl trimmed for readability; the actor returns the full URL):

{
"imageUrl": "https://i.pinimg.com/originals/2c/24/91/2c24917f5d44c73a48b10de4692f3467.jpg",
"title": "Cozy Reading Nook",
"url": "https://www.pinterest.com/pin/225039312627881892/",
"id": "225039312627881892",
"description": "Neva Round Daybed in Recycled Faux Fur color: Pampas Grass Featured on Instagram @ladyofbookshire",
"boardName": "Reading Room Inspo",
"boardUrl": "https://www.pinterest.com/erinturnage/reading-room-inspo/",
"pinnerUsername": "erinturnage",
"pinnerFullName": "Erin Turnage",
"pinnerProfileUrl": "https://www.pinterest.com/erinturnage/",
"pinnerFollowerCount": 89,
"pinnerId": "225039450038600465",
"pinnerImageUrl": "https://i.pinimg.com/140x140_RS/46/96/32/469632a67f252a78aec46ea006a4b971.jpg",
"pinnerIsVerified": null,
"boardPinCount": 4,
"boardUrlSlug": "reading-room-inspo",
"destinationUrl": "https://sixpenny.com/products/neva-round-daybed-slipcover-only?currency=USD&variant=40241699946540 [trimmed]",
"domain": "sixpenny.com",
"dominantColor": "#6c5942",
"imageWidth": 635,
"imageHeight": 1200,
"images": {
"170x": "https://i.pinimg.com/236x/2c/24/91/2c24917f5d44c73a48b10de4692f3467.jpg",
"236x": "https://i.pinimg.com/236x/2c/24/91/2c24917f5d44c73a48b10de4692f3467.jpg",
"474x": "https://i.pinimg.com/474x/2c/24/91/2c24917f5d44c73a48b10de4692f3467.jpg",
"736x": "https://i.pinimg.com/736x/2c/24/91/2c24917f5d44c73a48b10de4692f3467.jpg",
"orig": "https://i.pinimg.com/originals/2c/24/91/2c24917f5d44c73a48b10de4692f3467.jpg"
},
"isVideo": false,
"videoUrl": null,
"altText": "a living room filled with furniture and a large potted plant on top of a table",
"hashtags": null,
"isProduct": true,
"price": null,
"currency": null,
"availability": null,
"createdAt": "Sat, 05 Nov 2022 14:37:02 +0000",
"observedAt": "2026-08-10T14:33:16.154Z",
"error": null,
"saveCount": 38174,
"commentCount": 0,
"shareCount": 666,
"reactionCount": 1750
}

The most complete Pinterest scraper available. It returns every field a pin exposes, plus the pinner profile, board context, product and image details, and engagement counts (saves, comments, shares, reactions), and lets you scrape by keyword search, board, user profile or a single pin.

📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples

Apify Coverage Output Billing

Table of contents

What it does

The actor searches Pinterest by keyword and follows any board, user profile or pin URLs you pass, then writes one normalized record per pin to the run's dataset. Each pin includes its image URLs at every size, the pinner profile, board context, the linked product and destination when the pin is a product pin, and optional engagement counts (saves, comments, shares, reactions). Turn on includeComments to also collect a comments array of top comments per pin.

Provide at least one input: a list of searchTerms, a list of startUrls, or both. Missing source values are returned as null, never invented.

Quickstart

Open the actor, paste this into the input, and press Run. It returns up to 10 pins for the keyword home decor, each enriched with engagement counts.

{
"maxItems": 10,
"withDetails": true,
"includeComments": false,
"searchTerms": ["home decor"]
}

Add board, user or pin URLs to startUrls to scrape specific sources. Turn withDetails off for faster runs that return only the listing fields.

Input reference

FieldTypeRequiredDefaultDescription
searchTermsstring[]no["home decor"]Keywords to search Pinterest for, for example home decor. One search per keyword.
startUrlsarrayno(none)Pinterest URLs to scrape. Supports board URLs (pinterest.com/user/board/), user profile URLs (pinterest.com/user/) and pin URLs (pinterest.com/pin/12345/).
maxItemsintegerno10Maximum number of pins to collect across all inputs.
withDetailsbooleannotrueEnrich each pin with save, comment, share and reaction counts. Turn off for faster keyword, board or user runs.
includeCommentsbooleannofalseAlso include a comments array (top comments with text, author, likes, timestamp) when Pinterest exposes them. Requires withDetails on.

Provide at least one of searchTerms or startUrls.

Output reference

One dataset item per pin. Types: string, integer, boolean, object, object[], or null when the source value is absent.

FieldTypeDescription
idstringPinterest pin id (unique).
titlestringPin title.
urlstringPin URL on Pinterest.
descriptionstringPin description text.
imageUrlstringOriginal-size image URL.
imagesobjectImage URLs keyed by size (170x, 236x, 474x, 736x, orig).
imageWidthintegerOriginal image width in pixels.
imageHeightintegerOriginal image height in pixels.
dominantColorstringDominant color hex code.
altTextstringAccessibility alt text for the image, or null.
boardNamestringBoard the pin belongs to.
boardUrlstringBoard URL.
boardUrlSlugstringBoard slug.
boardPinCountintegerNumber of pins on the board.
pinnerUsernamestringPinner username.
pinnerFullNamestringPinner display name.
pinnerProfileUrlstringPinner profile URL.
pinnerFollowerCountintegerPinner follower count.
pinnerIdstringPinner id.
pinnerImageUrlstringPinner avatar URL.
pinnerIsVerifiedbooleanWhether the pinner is verified, or null.
destinationUrlstringOutbound link the pin points to, or null.
domainstringDomain of the destination link, or null.
isProductbooleantrue when the pin is a product pin.
pricenumberProduct price when published, else null.
currencystringProduct currency, or null.
availabilitystringProduct availability, or null.
isVideobooleantrue when the pin is a video.
videoUrlstringVideo URL when the pin is a video, else null.
hashtagsstring[]Hashtags on the pin, or null.
createdAtstringPin creation date.
saveCountintegerNumber of saves. Present when withDetails is on.
commentCountintegerNumber of comments. Present when withDetails is on.
shareCountintegerNumber of shares. Present when withDetails is on.
reactionCountintegerNumber of reactions. Present when withDetails is on.
commentsobject[]Top comments (text, author, likes, timestamp). Present only when includeComments is on.
observedAtstringISO 8601 timestamp of when the record was collected.
errorstringnull on success. On a failed input, an item with a populated error field is written instead.

Example output record

Real record from a live run (input {"searchTerms": ["home decor"], "maxItems": 10, "withDetails": true}):

{
"id": "225039312627881892",
"title": "Cozy Reading Nook",
"url": "https://www.pinterest.com/pin/225039312627881892/",
"description": "Neva Round Daybed in Recycled Faux Fur color: Pampas Grass Featured on Instagram @ladyofbookshire",
"boardName": "Reading Room Inspo",
"pinnerUsername": "erinturnage",
"pinnerFullName": "Erin Turnage",
"pinnerFollowerCount": 89,
"domain": "sixpenny.com",
"dominantColor": "#6c5942",
"imageWidth": 635,
"imageHeight": 1200,
"isProduct": true,
"isVideo": false,
"createdAt": "Sat, 05 Nov 2022 14:37:02 +0000",
"saveCount": 38174,
"commentCount": 0,
"shareCount": 666,
"reactionCount": 1750,
"observedAt": "2026-08-10T14:33:16.154Z",
"error": null
}

Run via API and CLI

Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.

Run synchronously and get dataset items in one call:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~pinterest-scraper/run-sync-get-dataset-items?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"searchTerms":["home decor"],"maxItems":25,"withDetails":true}'

Start a run asynchronously:

curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~pinterest-scraper/runs?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"startUrls":[{"url":"https://www.pinterest.com/pin/225039312627881892/"}],"maxItems":50}'

Apify CLI:

apify call scrapers_lat/pinterest-scraper \
--input '{"searchTerms":["minimalist kitchen"],"includeComments":true}'

Fetch results

Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:

# JSON
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"
# CSV
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"
# Paginate large datasets
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"

<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.

Billing and limits

  • Pay per result. You are charged per pin returned (result event). See the pricing tab for the current per-result price.
  • No charge on failure. If an input errors, the actor writes an item with a populated error field and does not charge for it. Empty runs cost nothing.
  • Spend cap respected. Set maxTotalChargeUsd on the run; once reached, the actor stops emitting and charging further billable results.
  • Free Apify plans are capped at 10 pins per run. Upgrade for higher maxItems.

FAQ and troubleshooting

A run returned 0 records. Why? The keyword matched nothing, or a URL pointed to an empty or private board or profile. Try a broader keyword or a public URL. Zero-result runs are not charged.

Can I scrape a specific board or user? Yes. Paste the board URL (pinterest.com/user/board/) or profile URL (pinterest.com/user/) into startUrls. You can mix keyword searches and URLs in one run.

Why are saveCount and the other counts missing? You ran with withDetails off. Turn it on to enrich each pin with save, comment, share and reaction counts.

How do I get comments? Turn on includeComments (and keep withDetails on). Each pin then includes a comments array when Pinterest exposes them.

Why is price null on a product pin? Pinterest did not publish a price for that pin. Missing source values are returned as null, never invented.

Is this an official Pinterest tool? No. This actor is independent and has no affiliation with Pinterest. It reads only data that is publicly available on Pinterest.

More scrapers at scrapers.lat

Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.


Independent tool, not affiliated with Pinterest. Accesses only publicly available data.