This workflow automatically turns WordPress posts into Pinterest publish jobs using PinBridge as the publishing layer.
It is designed for bloggers, publishers, affiliate sites, and content teams that already publish to WordPress and want a repeatable way to distribute that content to Pinterest without manually copying titles, descriptions, links, and images every time a post goes live.
The workflow starts by querying PinBridge for existing Pins, aggregates their titles, then fetches published WordPress posts from the WordPress REST API. From there, it filters out posts that do not have featured media and skips posts whose titles already exist in PinBridge, which gives the workflow a simple duplicate-protection layer. For posts that pass that filter, the workflow builds a publish-ready payload, validates the required fields, downloads the featured image, uploads that image through PinBridge, submits the Pinterest publish job, and returns a structured success or invalid result.
The goal is not just to publish. The goal is to publish in a way that is operationally clean, easy to review, and safer to run repeatedly.
A common WordPress-to-Pinterest workflow usually looks like this:
That manual step creates several problems:
This workflow solves that by turning WordPress into the content source and PinBridge into the publishing layer, with n8n sitting in the middle as the orchestrator.
When you run the workflow, it does the following:
That gives you a practical operational loop with a built-in first layer of duplicate protection.
This workflow is intentionally built around PinBridge instead of direct Pinterest API plumbing.
PinBridge is the publishing layer in the middle. In this workflow:
That separation keeps the workflow focused on the things n8n should be doing:
instead of forcing the workflow to become a full Pinterest delivery implementation.
This updated version adds an important protection step before WordPress posts are processed:
The workflow starts with the List pins node, which loads existing Pins from PinBridge.
Then the Published Titles aggregate node collects those titles into a single list.
Later, inside Skip Posts Without Featured Media, the workflow checks two things at once:
That means this workflow is no longer just “publish latest posts.” It is now closer to:
publish posts that have images and do not already appear to be published to Pinterest
This is still lightweight duplicate protection, not a perfect deduplication system, but it is a meaningful improvement for a community template.
You need five things before importing and running this workflow:
Create your PinBridge account first.
Go to pinbridge.io and register. A free account is enough to start testing the workflow.
You will need:
To connect the Pinterest account inside PinBridge, go to:
App > Accounts > Connect > Give Access
Make sure the correct Pinterest account is connected before you continue.
Inside PinBridge, create an API key that will be used by the n8n workflow.
To create a new key, go to:
App > API Keys > Create
When creating the key:
n8n-wordpress-publishAfter the key is created, go into n8n and create the PinBridge credential used by the PinBridge nodes in this workflow.
Before this workflow can run, your n8n instance must have the PinBridge community node installed.
This workflow uses the following PinBridge nodes:
If the PinBridge node is not installed, these nodes will either be missing or show as unknown after import.
If your n8n instance allows community nodes:
n8n-nodes-pinbridgeAfter installation, re-open the workflow and confirm that the PinBridge nodes load correctly.
If you manage your own n8n instance, install the package in your n8n environment:
npm install n8n-nodes-pinbridge
Then restart your n8n instance.
If you are running n8n in Docker, the exact installation method depends on how your container is built. In that case, add the package to your custom image or persistent community-node setup, then restart the container.
After the node is installed, search for PinBridge when adding a new node in n8n.
You should see the PinBridge node available. If you do not, the installation is not complete yet, or your n8n instance has not been restarted properly.
This workflow reads posts from the standard WordPress REST API using this pattern:
/wp-json/wp/v2/posts?status=publish&_embed=wp:featuredmedia
That means your WordPress site must allow your n8n credential to read:
At minimum, the workflow needs access to:
If your WordPress site blocks REST API access, uses a custom security layer, or has media access restrictions, make sure your n8n credential can successfully read posts before continuing.
Import the workflow JSON into your n8n instance.
After import, open the workflow and go through the credentialed nodes.
You will need to connect:
Do not assume imported placeholder credential IDs will work automatically. They will not.
Open the Get Latest WordPress Posts node and update the URL if needed.
The current workflow uses a direct HTTP request to:
https://www.nomadmouse.com/wp-json/wp/v2/posts?status=publish&_embed=wp:featuredmedia
If you are using your own site, replace that domain with your own WordPress domain.
This node is currently set up to fetch all published posts with embedded featured media data.
Open the Publish to Pinterest node.
You must configure:
accountIdboardIdThis workflow publishes to a single fixed board.
That means every qualifying WordPress post will be submitted to the same Pinterest board unless you later add routing logic.
The publish node also appends UTM parameters to the post link automatically:
?utm_source=pinterest&utm_medium=social
That is useful if you want cleaner attribution in your analytics.
This section explains exactly how the current workflow behaves.
The workflow starts manually.
This is the right choice for a community template because it makes first-run testing easier and keeps the setup predictable.
You can later replace it with:
This PinBridge node loads the existing Pins that are already known to PinBridge.
This is the first important difference from the earlier version of the template.
The workflow now begins by checking what has already been published.
This aggregate node collects the titles returned by List pins into a single list.
That list is later used to decide whether a WordPress post should be skipped.
This node fetches published WordPress posts from the WordPress REST API with embedded featured media.
This is the source of content for the rest of the workflow.
Despite the name, this node now does two checks:
If either of those checks fails, the post is not processed further.
This means the workflow now skips:
This node maps WordPress fields into a Pinterest-ready payload.
It builds:
post_idtitledescriptionlink_urlimage_urlalt_textA practical note: the actual image used for download later comes from the embedded media path in the Download Featured Image node, not from the image_url field created here. In this workflow, image_url mainly exists to support validation and payload completeness.
This node verifies that the workflow has the minimum data needed to continue.
The required fields are:
titledescriptionlink_urlimage_urlIf any are missing, the workflow goes to the invalid branch instead of attempting the publish process.
This node downloads the full-size WordPress featured image as a file.
That file is what gets sent into PinBridge as the asset upload input.
This sends the downloaded featured image into PinBridge.
This is the handoff point between WordPress media and the Pinterest publishing layer.
This submits the Pin publish job using PinBridge.
The node uses:
accountIdboardIdAt this stage, the workflow is recording successful job submission, not final downstream delivery confirmation.
That distinction matters.
If the publish request succeeds, the workflow builds a clean result object containing:
post_idtitlelink_urljob_idstatus = submittedsubmitted_aterror_message = ''This gives you a structured output you can later log, store, or notify from.
If required fields are missing, the workflow creates an invalid result object instead of attempting submission.
That protects the publishing path from clearly incomplete content.
This is deliberate.
This template is focused on the WordPress-to-PinBridge submission phase, not the full async lifecycle.
That keeps the first version understandable and easy to run.
A separate workflow should handle:
That separation is cleaner and more realistic operationally.
When you run the workflow for the first time:
job_idThis means not every WordPress post fetched from the API will go through the publish path.
That is intentional.
Do not start by pointing this at a very large live content set and assuming the filter is perfect.
Start with a small controlled test:
Then run the workflow manually.
A good outcome looks like this:
job_idThat proves the key branches are working.
If you import this template and leave the original WordPress URL in place, you will be reading the wrong site.
This workflow uses title matching as a duplicate-protection shortcut.
That is useful, but not perfect.
If two unrelated posts share the same title, the newer one may be skipped.
If the title changes slightly, the workflow may treat it as new.
This is acceptable for a starter template, but you should know the limitation.
A board name is not enough. Use the real board ID expected by PinBridge.
If the account context is wrong, the publish node may fail even though the rest of the workflow looks fine.
This workflow builds the description from the rendered WordPress excerpt. If your site does not use excerpts consistently, you may want to add a fallback from post content later.
The Build Pin Payload from Post node currently stores image_url from _links, while the actual download node uses _embedded['wp:featuredmedia'][0].media_details.sizes.full.source_url.
That works in the current flow because the download node uses the embedded media URL directly, but it is something you should be aware of if you refactor later.
Once the base workflow is working, the best next extensions are:
Run the workflow every 15 minutes, every hour, or on your editorial cadence.
Instead of title matching only, track:
Map WordPress categories or tags to different Pinterest boards.
Use a separate workflow to receive PinBridge webhook callbacks, verify signatures, and record the final publish state.
Send a Slack or Telegram message after each successful submission or failure.
If a post has no excerpt, derive a safe short description from the rendered content.
A post is publishable only if all of the following are true:
If any of those are false, the post should not be treated as publish-ready.
This workflow is a practical WordPress-to-Pinterest starter template with a built-in lightweight duplicate check.
It uses:
Compared to the earlier version, this one adds an important operational improvement: it checks existing PinBridge titles before attempting to publish new WordPress posts.
That makes it more useful as a real starter workflow, not just a happy-path demo.
If your WordPress site is reachable, your posts have featured images and excerpts, your PinBridge credential is configured, and your Pinterest account and board are correct, you should be able to run this workflow successfully from start to finish.
Before running the workflow, confirm all of the following:
If all of that is true, the workflow is ready to run.