Pinterest Board Downloader avatar

Pinterest Board Downloader

Pricing

$2.50 / 1,000 results

Go to Apify Store
Pinterest Board Downloader

Pinterest Board Downloader

This Apify Actor enables you to extract and download structured data from all pins in a Pinterest Board using only the board's URL

Pricing

$2.50 / 1,000 results

Rating

0.0

(0)

Developer

Headless Agent

Headless Agent

Maintained by Community

Actor stats

4

Bookmarked

281

Total users

7

Monthly active users

16 days ago

Last modified

Share

This Apify Actor enables you to extract and download structured data from pins in multiple Pinterest Boards using the board's URLs. The Actor crawls the boards, fetching metadata for pins up to a configurable maximum limit—including images, videos, user and board information, statistics, and external links. It's ideal for automation workflows, data analysis, or archiving Pinterest Boards efficiently.

Features

  • Extracts all Pins from multiple boards via a list of board URLs.
  • Configurable maximum pins to scrape per board via maxPinsPerBoard.
  • Retrieves various image sizes and direct video links (if available) for each Pin.
  • Gathers board and user profile details, as well as statistics and outbound links.
  • Outputs structured JSON for easy post-processing or integration.

Input

The required inputs are a list of urls (Pinterest Board URLs) and an optional maxPinsPerBoard to limit the number of pins scraped per board.

Example Input:

{
"urls": [
"https://www.pinterest.com/mashaleschishin5/procreate/",
"https://www.pinterest.com/dpxxty/meme-cat/"
],
"maxPinsPerBoard": 15
}

Note: The URLs must point to Pinterest Boards (not individual Pins).

Output

For every Pin found on the board, the output dataset will contain an object with these fields:

  • url: The URL of the board being scraped
  • data:
    • id, title
    • Statistics: savesCount, repinCount
    • images: an array of available image sizes (with metadata)
    • videos: video information, if present
    • board: associated board details
    • link, domain
    • pinner: information about the user who created or saved the pin

Example Pin Output:

{
"url": "https://pinterest.com/dpxxty/meme-cat/",
"data": {
"id": "589901251239854800",
"title": "",
"savesCount": 3428,
"repinCount": 0,
"images": [
{
"url": "https://i.pinimg.com/236x/1c/c5/6b/1cc56b0e9cd5f26310f92d9848113a78.jpg",
"width": 236,
"height": 218,
"quality": "170x",
"extension": "jpg"
},
{
"url": "https://i.pinimg.com/originals/1c/c5/6b/1cc56b0e9cd5f26310f92d9848113a78.jpg",
"width": 720,
"height": 667,
"quality": "orig",
"extension": "jpg"
}
],
"videos": null,
"board": {
"id": "589901319882021471",
"url": "https://www.pinterest.com/dpxxty/meme-cat/",
"privacy": "public",
"name": "meme cat"
},
"link": "",
"domain": "Uploaded by user",
"pinner": {
"id": "589901388599834725",
"fullName": "depin",
"username": "dpxxty",
"imageUrl": "https://i.pinimg.com/75x75_RS/ef/18/21/ef1821fc46de910919e1f3c7897428a4.jpg"
}
}
}