# Pinterest Scraper 2026 — Pins, Boards & Search (No API) (`cryptosignals/pinterest-scraper`) Actor

Scrape Pinterest pins, boards, and search results without API key. Get pin title, description, image URL, board, repins, and likes. Ideal for trend research and visual content discovery. PPE pricing — pay only for results.

- **URL**: https://apify.com/cryptosignals/pinterest-scraper.md
- **Developed by:** [Web Data Labs](https://apify.com/cryptosignals) (community)
- **Categories:** Social media
- **Stats:** 42 total users, 5 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00 / 1,000 result scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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 Scraper 2026 — No API Key

> Pinterest's API requires app approval and limits you to your own boards. This scraper extracts any public pin, board, or profile — instantly.

### What It Extracts

- ✅ **Pins** — image URL (HD), title, description, source URL
- ✅ **Stats** — save count, comment count
- ✅ **Board info** — name, description, follower count, pin count
- ✅ **Pinner** — username, display name, avatar, followers
- ✅ **Video pins** — video URL and thumbnail
- ✅ **Rich pins** — product, article, recipe metadata
- ✅ **Search results** — by keyword
- ✅ **Related pins** — discovery feed

### Sample Output

```json
{
  "id": "123456789012345678",
  "url": "https://pinterest.com/pin/123456789012345678/",
  "title": "Scandinavian Living Room Ideas 2026",
  "description": "Minimalist scandi living room with natural wood and whites",
  "imageUrl": "https://i.pinimg.com/originals/xx/yy/zz.jpg",
  "sourceUrl": "https://mydomain.com/blog/scandi-living",
  "domain": "mydomain.com",
  "saves": 8234,
  "comments": 42,
  "isVideo": false,
  "board": {
    "name": "Home Decor Ideas",
    "url": "https://pinterest.com/user/home-decor",
    "pinCount": 1842
  },
  "pinner": {
    "username": "homedesign_lover",
    "displayName": "Home Design Daily",
    "followers": 284000
  },
  "createdAt": "2026-03-20T10:00:00.000Z"
}
```

### Input

```json
{
  "searchTerms": ["scandinavian interior", "minimalist kitchen"],
  "boardUrls": ["https://pinterest.com/user/board"],
  "pinUrls": ["https://pinterest.com/pin/..."],
  "maxResults": 500
}
```

### Use Cases

- **Affiliate marketing** — find winning pins in your niche
- **Trend research** — see what's gaining saves right now
- **Content curation** — build mood boards programmatically
- **SEO research** — identify high-traffic source domains
- **E-commerce** — find products going viral on Pinterest

### 💰 Pricing Update (April 17, 2026)

Starting **April 17, 2026**, this actor switches to **Pay-Per-Result (PPE)** pricing. You only pay for successful results — no platform time billing, no surprise costs. Free tier users can still try it out.

### ⭐ Leave a Review

If this scraper saved you time, please **leave a ⭐ review** on the actor page. Reviews help us keep it free-tier friendly and fund new features.

# Actor input Schema

## `action` (type: `string`):

What to scrape from Pinterest

## `query` (type: `string`):

Keyword to search for (required when action is search)

## `maxItems` (type: `integer`):

Maximum number of items to return

## Actor input object example

```json
{
  "action": "search",
  "query": "photography",
  "maxItems": 5
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

# 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 = {
    "action": "search",
    "query": "photography",
    "maxItems": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("cryptosignals/pinterest-scraper").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 = {
    "action": "search",
    "query": "photography",
    "maxItems": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("cryptosignals/pinterest-scraper").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 '{
  "action": "search",
  "query": "photography",
  "maxItems": 5
}' |
apify call cryptosignals/pinterest-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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