Zernio
Zernio
ResourcesIntegrationsChat SDKn8nMakeZapierOpenClaw
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Integrations

n8n

Create and schedule posts from an n8n workflow with the verified Zernio node, upload media, and receive post and account events.


When you finish this page an n8n workflow creates a post on a connected account through the Zernio node, with no HTTP node to configure. You need an API key, a connected account and n8n Cloud or a self-hosted n8n.

DetailValue
Node packagen8n-nodes-zernio
Sourcegithub.com/zernio-dev/n8n-nodes-zernio
npmnpmjs.com/package/n8n-nodes-zernio
LicenseMIT
Works onn8n Cloud and self-hosted

The node covers these resources:

ResourceOperations
PostsCreate and schedule posts to X (platform value twitter), Instagram, Facebook, LinkedIn, TikTok, YouTube, Threads, Bluesky and Pinterest
ProfilesCreate profiles, connect platforms
MediaUpload files, presign large files (over 4 MB)
WebhooksReceive post and account events (post.published, post.failed and more)
UsageRead usage statistics

The Posts resource covers 9 of the platforms POST /v1/posts accepts. WhatsApp, Reddit, Discord, Slack, Snapchat, Google Business Profile and Telegram have no entry in the node's platform picker; reach them from n8n with the built-in HTTP Request node against POST /v1/posts (Create post), using the same API key credential.

Step 1: Install the node

Add the node

On n8n Cloud, search for Zernio in the node palette; the node is verified, so no community-node install is needed.

On a self-hosted instance, open Settings, then Community nodes, click Install a community node, enter n8n-nodes-zernio and confirm. n8n installs it and the node appears in the palette without a restart.

Where that screen is unavailable (an older version, or N8N_COMMUNITY_PACKAGES_ENABLED=false), install it into n8n's own node directory and restart the process:

cd ~/.n8n/nodes && npm install n8n-nodes-zernio

Create the credential

The first Zernio node you add prompts for a Zernio API credential. Click Create New Credential, paste your API key and click Save. The credential is reused by every Zernio node in your workflows.

Check the connection

Add a Zernio node, set Resource to Profiles and Operation to List Profiles, and click Execute Node. The output lists your profiles.

Step 2: Create a post

  1. Add a Zernio node.
  2. Set Resource to Posts.
  3. Set Operation to the target platform, for example Add Post to Twitter/X.
  4. Pick the Profile and the Social Account from the dropdowns.
  5. Enter the Content.
  6. Set the scheduled time to publish later, or leave it empty to publish now.

Each platform has its own operation and fields:

OperationFields
Add Post to Twitter/XContent, Media URLs
Add Post to InstagramContent, Media URLs
Add Instagram StoriesContent, Image URL
Add Instagram ReelsContent, Video URL, Thumbnail
Add Post to LinkedInContent, Media URLs
Add Post to FacebookContent, Media URLs
Add Post to TikTokContent, Video URL
Upload YouTube VideoContent, Video URL, Thumbnail
Add Post to ThreadsContent, Media URLs
Add Post to BlueskyContent, Media URLs
Upload Pinterest Image PinContent, Image URL, Board, Link
Upload Pinterest Video PinContent, Video URL, Board, Cover Image, Link

Map values from earlier nodes with n8n expressions: {{ $json.postText }} from a Google Sheets, RSS or Code node into Content, {{ $json.publishDate }} (ISO 8601) into the scheduled time, {{ $json.imageUrl }} into Media URLs.

Step 3: Schedule a post

Set the scheduled time to a future timestamp and the post publishes then. To compute it, put a Code node before the Zernio node:

const tomorrow = new Date();
tomorrow.setDate(tomorrow.getDate() + 1);
tomorrow.setHours(9, 0, 0, 0);

return [{ json: { scheduledFor: tomorrow.toISOString() } }];

Then map {{ $json.scheduledFor }} into the scheduled time.

Step 4: Upload media

For files under 4 MB, set Resource to Media and Operation to Upload, and pass the file from a previous node (HTTP Request, Google Drive, Read Binary File). For larger files, run the Presign operation first, upload the file to the URL it returns, then use the media URL in the post. Size limits and per-platform requirements are in the media uploads guide.

Step 5: Receive events

Add a Zernio node with Resource set to Webhooks, enter your n8n webhook URL and select the events. Receive them with a Webhook trigger node.

EventDescription
post.scheduledPost entered the scheduled state (created, queued, promoted from draft, or retried)
post.publishedPost published
post.failedPost failed on every platform
post.partialPost published on some platforms and failed on others
account.connectedAccount connected
account.disconnectedAccount disconnected

The payloads are documented under webhooks. A post.failed event feeding a Slack or email node is the usual failure alert.

Workflow examples

Daily posting from a content calendar: Schedule Trigger at 9:00 every day, Google Sheets reads the next row, Zernio creates the post from the row's content, platform and media.

RSS to social: Schedule Trigger every hour, RSS Feed Read on your blog feed, IF checks for new items, Zernio posts them to X and LinkedIn.

AI pipeline: Schedule Trigger daily, HTTP Request fetches topics, OpenAI writes a version per platform, Zernio posts each one. Prebuilt templates for these are at zernio.com/n8n-templates.

If it fails

A 429 from the Zernio node means your team hit its request limit (rate limits). On the node, open Settings and set Retry on Fail with Max Tries 3 and Wait Between Tries (ms) 2000, and space high-volume runs with the Schedule Trigger interval or Wait nodes between batches. For every other failure, an Error Workflow (a workflow with an Error Trigger node, selected under Settings in the main workflow) receives the error and can notify you.

Related

  • Zernio node on n8n
  • Workflow templates
  • Source code and the npm package
  • API keys
  • API reference
Was this page helpful?

Chat SDK

Build one chatbot that answers Instagram, Facebook, Telegram, WhatsApp, X, Bluesky and Reddit conversations through the Zernio adapter for Vercel's Chat SDK.

Make

Create and schedule posts from a Make scenario with the Zernio app's modules, cross-post through a Router, and call any endpoint with Make an API Call.

On this page

Step 1: Install the nodeAdd the nodeCreate the credentialCheck the connectionStep 2: Create a postStep 3: Schedule a postStep 4: Upload mediaStep 5: Receive eventsWorkflow examplesIf it failsRelated