# Pinterest Image Downloader (`easyapi/pinterest-image-downloader`) Actor

Easily download high-quality images from Pinterest. With batch downloading capabilities and comprehensive data retrieval, you can enrich your visual content library effortlessly! 📸

- **URL**: https://apify.com/easyapi/pinterest-image-downloader.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** Social media, Integrations
- **Stats:** 324 total users, 2 monthly users, 100.0% runs succeeded, 8 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $2.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

### 📸 Pinterest Image Downloader

Effortlessly download images from Pinterest with our **Pinterest Image Downloader**! This Apify actor allows you to input multiple Pinterest links and retrieve high-quality images in bulk.

#### 🌟 Key Features

- **Batch Image Downloading**: Input multiple Pinterest links to download images at once.
- **High-Quality Images**: Access a variety of image resolutions and formats.

#### 🛠️ Data Fields Returned

The downloader retrieves a detailed set of fields for each pin, including:

- **url**: Pinterest URL for the pin.
- **result**:
  - **url**: Direct link to the Pinterest pin.
  - **source**: Source of the image (e.g., "pinterest").
  - **title**: Title or description of the pin.
  - **medias**: An array of media objects containing:
    - **width**: Width of the image.
    - **height**: Height of the image.
    - **url**: Direct link to the image.
    - **quality**: Description of the image quality (e.g., "236x").
    - **extension**: File extension (e.g., "jpg").
    - **type**: Type of media (e.g., "image").
  - **type**: Type of content (e.g., "multiple" for pins with several images).
  - **error**: Indicates if there was an error during retrieval (boolean).

#### 🚀 Why Choose Our Downloader?

- **Convenient and Fast**: Quickly download multiple images without hassle.
- **User-Friendly Interface**: Designed to be intuitive and easy to use for everyone.
- **Quality Assurance**: Ensure you get high-quality images suitable for various uses.

#### Input

A full explanation of an input example in JSON.

```
{
  "links": [
      "https://jp.pinterest.com/pin/1337074888254229/",
      "https://jp.pinterest.com/pin/703756187194777/"
  ]
}
```

#### Output sample

The results will be wrapped into a dataset which you can always find in the **Storage** tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

```
[
  {
    "url": "https://jp.pinterest.com/pin/1337074888254229/",
    "result": {
      "url": "https://jp.pinterest.com/pin/1337074888254229/",
      "source": "pinterest",
      "title": "Sam Coleman | Some snippets of this golden boy &#127912; . . . #artreels #handmadepainting #watercolorpainting #watercolordog #irishartist #petportraits&#8230; | Instagram",
      "medias": [
        {
          "width": 236,
          "height": 419,
          "url": "https://i.pinimg.com/236x/ac/10/56/ac105618d3e5e08cfd42c3f0149bbc82.jpg",
          "quality": "236x",
          "extension": "jpg",
          "type": "image"
        },
        {
          "width": 236,
          "height": 419,
          "url": "https://i.pinimg.com/236x/ac/10/56/ac105618d3e5e08cfd42c3f0149bbc82.jpg",
          "quality": "237x",
          "extension": "jpg",
          "type": "image"
        },
        {
          "width": 540,
          "height": 960,
          "url": "https://i.pinimg.com/564x/ac/10/56/ac105618d3e5e08cfd42c3f0149bbc82.jpg",
          "quality": "564x",
          "extension": "jpg",
          "type": "image"
        }
      ],
      "type": "multiple",
      "error": false
    }
  },
  ...
]
```

# Actor input Schema

## `links` (type: `array`):

An array of URLs to process

## `proxyConfiguration` (type: `object`):

Optionally, use Apify Proxy or custom HTTP proxy to avoid IP address-based blocking.

## Actor input object example

```json
{
  "links": [
    "https://jp.pinterest.com/pin/1337074888254229/",
    "https://jp.pinterest.com/pin/703756187194777/"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "links": [
        "https://jp.pinterest.com/pin/1337074888254229/",
        "https://jp.pinterest.com/pin/703756187194777/"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/pinterest-image-downloader").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "links": [
        "https://jp.pinterest.com/pin/1337074888254229/",
        "https://jp.pinterest.com/pin/703756187194777/",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("easyapi/pinterest-image-downloader").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "links": [
    "https://jp.pinterest.com/pin/1337074888254229/",
    "https://jp.pinterest.com/pin/703756187194777/"
  ]
}' |
apify call easyapi/pinterest-image-downloader --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=easyapi/pinterest-image-downloader",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/QdgRAJUw5KkMFkwtt/builds/LXQTLqSZknCgZ9dTd/openapi.json
