Social Media Scraping 3 min read

How to Get Pinterest Data with an Unofficial Pinterest API

Scrape Pinterest pins, boards, and user pins instantly with JSON results, no business account needed. Get images, links, videos, recipes, and more fast.

by
Image with pinterest search of chocolate cake on the left and the json representation on the right

If you’ve ever tried using Pinterest’s official API, you know the drill, you need a business account, and even then the documentation is hard to navigate. You just want to search, get pins, boards, or a user’s pins, but instead you’re stuck wading through permissions, auth flows, and limited endpoints.

That’s exactly why we built the Scrape Creators Unofficial Pinterest API, no hoops to jump through, no confusing auth, just JSON results instantly.

Why Use the Unofficial Pinterest API?

  • No Business Account Required – Anyone can use it.
  • Fast JSON Responses – Get clean, structured data you can use right away.
  • Simple Search – Search for any keyword and get relevant pins in seconds.
  • Rich Data – Each pin includes:
    • Image URLs (full-size)
    • Pin link URL (destination)
    • Video details (if available)
    • Recipe metadata (if applicable)
    • Board details
    • User profile info

Example: Search Pinterest Pins with the API

Let’s say you want to scrape Pinterest dessert recipes for “chocolate cake” and instantly get all the image URLs, recipe links, and even the ingredient lists.

import axios from "axios";

const API_KEY = "YOUR_API_KEY";
const query = "chocolate cake";

const res = await axios.get(
  `https://api.scrapecreators.com/v1/pinterest/search?query=${query}`,
  {
    headers: { "x-api-key": API_KEY },
  },
);

console.log(res.data);

Example Response:

{
  "success": true,
  "pins": [
    {
      "node_id": "UGluOjg4MDMxMzY3NzE2NTkxMDA4",
      "url": "https://www.pinterest.com/pin/88031367716591008",
      "auto_alt_text": "the world's best chocolate cake on a plate with two pieces cut out and ready to be eaten",
      "id": "88031367716591008",
      "description": "Best chocolate cake recipe that’s rich, moist, and decadent! Perfect as a homemade treat or for special occasions, this easy dessert will wow your guests. Indulge in this simple dessert that feels gourmet yet is foolproof. Save this recipe for later! #DessertLover #ChocolateCake",
      "title": "Ultimate Moist Chocolate Cake Recipe for Beginners!",
      "images": {
        "orig": {
          "width": 1000,
          "height": 2000
        }
      },
      "link": "https://www.mommyplates.com/the-ultimate-chocolate-cake-recipe/",
      "domain": "mommyplates.com",
      "seo_alt_text": "the world's best chocolate cake on a plate with two pieces cut out and ready to be eaten",
      "board": {
        "node_id": "Qm9hcmQ6ODgwMzE0MzY0MDU2NjY0MzQ=",
        "owner": {
          "username": "livbuzz",
          "follower_count": 177,
          "full_name": "Liv Buzz",
          "id": "88031505124693058"
        },
        "is_collaborative": false,
        "name": "Baking",
        "cover_images": {
          "222x": {
            "url": "https://i.pinimg.com/222x/ae/ca/86/aeca86d5100263e08251cb1ce2bb7c38.jpg",
            "width": 222
          }
        },
        "pin_count": 10,
        "type": "board",
        "id": "88031436405666434",
        "url": "/livbuzz/baking/"
      },
      "grid_title": "Ultimate Moist Chocolate Cake Recipe for Beginners!",
      "created_at": "Fri, 01 Aug 2025 19:57:38 +0000",
      "pinner": {
        "node_id": "VXNlcjo4ODAzMTUwNTEyNDY5MzA1OA==",
        "username": "livbuzz",
        "follower_count": 177,
        "image_large_url": "https://i.pinimg.com/140x140_RS/69/a1/83/69a18340b0820e22ea33da2efa61b857.jpg",
        "id": "88031505124693058"
      }
    },
    {
      "node_id": "UGluOjc3NDEyNDkzMDk0MzQwMA==",
      "url": "https://www.pinterest.com/pin/774124930943400",
      "auto_alt_text": "two photos side by side of a chocolate cake with the words, easy to make delicious irresistiblely easy chocolate cake recipe",
      "id": "774124930943400",
      "description": "Indulge in this irresistible easy chocolate cake recipe that’s perfect for any celebration! With its rich flavors and moist texture, this cake is sure to be the star of your dessert table. Crafted with simple ingredients and easy steps, it's a recipe anyone can master. Whether it’s for a festive gathering or a well-deserved treat after a long day, this cake is guaranteed to impress. Save this recipe now and bring joy to your next occasion with this delightful dessert!",
      "title": "Irresistible Easy Chocolate Cake Recipe",
      "images": {
        "orig": {
          "width": 1080,
          "height": 1920,
          "url": "https://i.pinimg.com/originals/56/3f/fc/563ffce6d3d2cdb93163da12652107d9.png"
        }
      },
      "link": "https://lovedrecipes.com/ultimate-chocolate-cake-recipe-for-every-occasion/",
      "domain": "lovedrecipes.com",
      "seo_alt_text": "two photos side by side of a chocolate cake with the words, easy to make delicious irresistiblely easy chocolate cake recipe",
      "board": {
        "node_id": "Qm9hcmQ6Nzc0MTkzNjI1MjI3MTc3",
        "owner": {
          "username": "stephholt1008",
          "follower_count": 123,
          "full_name": "Steph Holt",
          "id": "774262344387752"
        },
        "name": "ALL the food",
        "cover_images": {
          "222x": {
            "url": "https://i.pinimg.com/222x/45/75/a2/4575a269bd789ec06d9c96d2cf4a15eb.jpg",
            "width": 222
          }
        },
        "pin_count": 2442,
        "type": "board",
        "id": "774193625227177",
        "url": "/stephholt1008/all-the-food/"
      },
      "grid_title": "Irresistible Easy Chocolate Cake Recipe",
      "created_at": "Mon, 21 Jul 2025 04:41:59 +0000",
      "pinner": {
        "node_id": "VXNlcjo3NzQyNjIzNDQzODc3NTI=",
        "username": "stephholt1008",
        "follower_count": 123,
        "id": "774262344387752"
      }
    }
  ],
  "cursor": "Y2JVSG81V2...."
}

In just a few lines of code, you now have:

  • Direct links to each pin’s full-size image
  • The original recipe source URL
  • Board and user info for categorization
  • Recipe ingredients and instructions if Pinterest has them

Available Endpoints

Real-World Use Cases

  1. Recipe Aggregation Pull recipe pins (ingredients, steps, links) into your own cooking app or website.
  2. E-Commerce Inspiration Track trending product pins and see what’s getting shared in your niche.
  3. Content Curation Power a blog or social media scheduler with the latest visual content from Pinterest.
  4. Market Research Analyze how people are pinning products, styles, and trends in real time.
  5. Video Pin Discovery Find all video pins for a topic (e.g., “DIY furniture”) and embed them in your site.

Why This Beats the Official Pinterest API

Pinterest’s official API is designed for marketers and advertisers, not developers who want direct content access. With Scrape Creators’ Unofficial Pinterest API, you skip the bureaucracy and get exactly what you need, data, not red tape.

Try It Today

Whether you’re building a B2C app, doing Pinterest SEO research, or just want instant Pinterest data in JSON, the Scrape Creators Unofficial Pinterest API gets you there faster.

Get started here and start pulling Pinterest data in seconds.

FAQ

Frequently asked
questions

Can't find what you're looking for? Email me.

Adrian Horning

Written by

Adrian Horning

Founder of ScrapeCreators. I write about social data APIs, scraper reliability, and turning public creator data into useful products.

Connect

ScrapeCreatorsScrapeCreators

Social Media Scraping API
for Developers

Real-time data from TikTok, Instagram, YouTube, X, Facebook, Reddit, and more.

Real-time Data

Fresh, accurate, always up-to-date.

No Proxies

We handle the infrastructure.

Developer First

Simple API. Powerful results.

TikTok logoInstagram logoYouTube logoX logoFacebook logoReddit logo
{200 OK
"platform": "youtube",
"type": "video",
"title": "Never Gonna Give You Up",
"views": 12504321,
"transcript": "We're no strangers to love...",
}
Success124ms
Purple gift box representing 100 free ScrapeCreators credits

Get 100 credits on us - instantly.

No credit card required. Start building for free.

Try the API, on us.

New developers get 100 free credits automatically when they sign up. No credit card required.

Get started free
Trusted by 10,000+ developers
99.9% uptime
Secure API access