# Pinterest Video Downloader (`easyapi/pinterest-video-downloader`) Actor

Easily download high-quality videos from Pinterest. With batch downloading capabilities and high-speed scraping, you can enrich your video collection effortlessly! 🎥

- **URL**: https://apify.com/easyapi/pinterest-video-downloader.md
- **Developed by:** [EasyApi](https://apify.com/easyapi) (community)
- **Categories:** Social media, Videos, Integrations
- **Stats:** 207 total users, 17 monthly users, 100.0% runs succeeded, 6 bookmarks
- **User rating**: 1.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 Video Downloader

Easily download videos from Pinterest with our **Pinterest Video Downloader**! This Apify actor allows you to input multiple Pinterest links and retrieve high-speed downloads of videos in bulk.

#### 🌟 Key Features

- **Batch Video Downloading**: Input multiple Pinterest links to download videos quickly.
- **High-Speed Scraping**: Enjoy fast retrieval of video content without delays.

#### 🛠️ Data Fields Returned

The downloader retrieves a comprehensive 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 video (e.g., "pinterest").
  - **title**: Title or description of the video.
  - **medias**: An array of media objects containing:
    - **width**: Width of the video.
    - **height**: Height of the video.
    - **duration**: Length of the video in milliseconds.
    - **url**: Direct link to the video file.
    - **thumbnail**: URL for the video thumbnail image.
    - **captions\_urls**: URLs for any available captions (if applicable).
    - **best\_captions\_url**: URL for the best available captions (if applicable).
    - **quality**: Quality of the video (e.g., "V\_720P").
    - **extension**: File extension (e.g., "mp4").
    - **type**: Type of media (e.g., "video").
  - **type**: Type of content (e.g., "single" for individual videos).
  - **error**: Indicates if there was an error during retrieval (boolean).

#### 🚀 Why Choose Our Downloader?

- **Convenient and Fast**: Quickly download multiple videos with high-speed performance.
- **User-Friendly Interface**: Designed to be intuitive, making it easy for anyone to use.
- **Quality Assurance**: Ensure you receive high-quality video files suitable for various uses.

#### Input

A full explanation of an input example in JSON.

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

#### 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/1005147210570271054/",
    "result": {
      "url": "https://jp.pinterest.com/pin/1005147210570271054/",
      "source": "pinterest",
      "title": "Montessori book for baby 6 months, Sensory book cute fox, Quiet book for baby 9 months, Baby's first book",
      "medias": [
          {
              "width": 1080,
              "height": 1920,
              "duration": 39766,
              "url": "https://v1.pinimg.com/videos/mc/720p/17/52/ac/1752aca4002bf24c520aadc3c76aaa08.mp4",
              "thumbnail": "https://i.pinimg.com/videos/thumbnails/originals/17/52/ac/1752aca4002bf24c520aadc3c76aaa08.0000000.jpg",
              "captions_urls": null,
              "best_captions_url": null,
              "quality": "V_720P",
              "extension": "mp4",
              "type": "video"
          }
      ],
      "type": "single",
      "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/1005147210570271054/"
  ],
  "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/1005147210570271054/"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("easyapi/pinterest-video-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/1005147210570271054/"] }

# Run the Actor and wait for it to finish
run = client.actor("easyapi/pinterest-video-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/1005147210570271054/"
  ]
}' |
apify call easyapi/pinterest-video-downloader --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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