https://github.com/gitroomhq/postiz-n8n
This is the Postiz n8n custom node repository
https://github.com/gitroomhq/postiz-n8n
n8n n8n-nodes n8n-workflow social social-media social-media-n8n social-media-scheduler
Last synced: 2 months ago
JSON representation
This is the Postiz n8n custom node repository
- Host: GitHub
- URL: https://github.com/gitroomhq/postiz-n8n
- Owner: gitroomhq
- License: mit
- Created: 2025-07-08T11:27:19.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-08-04T15:32:53.000Z (3 months ago)
- Last Synced: 2025-08-04T17:56:10.254Z (3 months ago)
- Topics: n8n, n8n-nodes, n8n-workflow, social, social-media, social-media-n8n, social-media-scheduler
- Language: TypeScript
- Homepage: https://postiz.com
- Size: 152 KB
- Stars: 11
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Introduction
[Postiz](https://postiz.com) is a powerful social media scheduling tool that allows you to manage your social media accounts efficiently.You can use n8n to automate your workflow and post to multiple social media platforms at once.
You can [self-host](https://docs.postiz.com/introduction) Postiz or use our [cloud version](https://platform.postiz.com).
For example: Load news from Reddit >> Make it a video with AI >> Post it to your social media accounts.Postiz supports: X, LinkedIn, BlueSky, Instagram, Facebook, TikTok, YouTube, Pinterest, Dribbble, Telegram, Discord, Slack, Threads, Lemmy, Reddit, Mastodon, Warpcast, Nostr and VK.
You can learn how to use Postiz + n8n after installation here:
https://youtu.be/c50u3K3xsCI---
> Note
> If you are self-hosting Postiz on port 5000 (reverse proxy),
> Your host must end with /api for example:
> http://yourdomain.com/apiAlternatively, you can use the SDK with curl, check the [Postiz API documentation](https://docs.postiz.com/public-api) for more information.
---
## Installation (quick installation)
- Click on settings
- Click on Community Nodes
- Click on Install
- Add "n8n-nodes-postiz" to "npm Package Name"
- Click on Install
---
## Installation (non-docker - manual installation)
Go to your n8n installation usually located at `~/.n8n`.
Check if you have the `custom` folder, if not create it and create a new package.json file inside.
```bash
mkdir -p ~/.n8n/custom
npm init -y
```Then install the Postiz node package:
```
npm install n8n-nodes-postiz
```## For docker users (manual installation)
Create a new folder on your host machine, for example `~/n8n-custom-nodes`, and create a new package.json file inside:
```bash
mkdir -p ~/n8n-custom-nodes
npm init -y
```install the Postiz node package:
```bash
npm install n8n-nodes-postiz
```When you run the n8n docker container, mount the custom nodes folder to the container:
Add the following environment variable to your docker run command:
```
N8N_CUSTOM_EXTENSIONS="~/n8n-custom-nodes"
```