Skip to content

n8n Node Support

Integrate Repliz directly into your automated workflows using the official Repliz community node for n8n. The package allows you to connect your social media management pipeline with thousands of other services without writing custom API code.

The package is available on npm: n8n-nodes-repliz.


Installation

You can install the Repliz node package on any self-hosted n8n instance.

Via n8n Web UI

  1. Open your n8n dashboard and go to Settings > Community Nodes.
  2. Click Install a community node (or Install a new node).
  3. In the npm Package Name field, enter n8n-nodes-repliz.
  4. Read the warning, check the box, and click Install.
  5. Restart your n8n instance if prompted.

Via Command Line

If you manage your self-hosted n8n instance manually, install the package within your n8n installation directory:

bash
npm install n8n-nodes-repliz

Authentication & Credentials

All Repliz nodes require a Repliz API credential configuration to authenticate requests.

1. Get Your API Keys

  1. Log in to your Repliz Dashboard.
  2. Navigate to Settings > API.
  3. Copy your Access Key and Secret Key. If you do not have keys generated, click Generate New Keys.

2. Configure Credentials in n8n

When adding a Repliz node to your workflow, you will be prompted to create or select credentials. Enter the following fields:

FieldRequiredDescription
Access KeyYesYour Repliz API Access Key
Secret KeyYesYour Repliz API Secret Key
API Base URLNoDefaults to https://api.repliz.com

Available Nodes

The package provides 13 distinct nodes mapped to specific API resources and plan tiers:

Account Management

  • Repliz Account <Badge type="info" text="Standard+" />
    Manage connected accounts in your workspace.
    Operations: Get All, Count, Get One, Remove.

  • Repliz Account Facebook <Badge type="warning" text="Gold+" />
    Connect and manage Facebook integration pages.
    Operations: Authorize, Get Pages, Exchange Token, Connect, Reconnect.

  • Repliz Account Instagram <Badge type="warning" text="Gold+" />
    Connect and manage Instagram integration accounts.
    Operations: Authorize, Connect, Reconnect.

  • Repliz Account Threads <Badge type="warning" text="Gold+" />
    Connect and manage Threads integration accounts.
    Operations: Authorize, Connect, Reconnect.

  • Repliz Account YouTube <Badge type="warning" text="Gold+" />
    Connect and manage YouTube integration channels.
    Operations: Authorize, Get Channels, Exchange Token, Connect, Reconnect.

  • Repliz Account LinkedIn <Badge type="warning" text="Gold+" />
    Connect and manage LinkedIn integration organizations.
    Operations: Authorize, Get Organization, Exchange Token, Connect, Reconnect.

  • Repliz Account TikTok <Badge type="warning" text="Gold+" />
    Connect and manage TikTok integration accounts.
    Operations: Authorize, Connect, Reconnect.

  • Repliz Account Shopee <Badge type="warning" text="Gold+" />
    Connect and manage Shopee shop integrations.
    Operations: Authorize, Connect, Reconnect.

Comment & Chat Management

  • Repliz Comment <Badge type="info" text="Standard+" />
    Retrieve and moderate comments collected by Repliz.
    Operations: Get All, Get One, Reply, Update Status.

  • Repliz Chat <Badge type="warning" text="Gold+" />
    Manage live chat conversations and messages.
    Operations: Get All, Get One, Get Messages, Send Message, Read Chat.

Content & Scheduling

  • Repliz Content <Badge type="warning" text="Gold+" />
    Interact with published social media posts, reels, and stories.
    Operations: Get All, Get One, Get Comments, Create Comment, Get Statistic, Message Comment Author, Remove Comment.

  • Repliz Schedule <Badge type="danger" text="Premium+" />
    Create, update, and queue scheduled posts across platforms. Supports post types: Text, Image, Video, Reel, Album, Link, Story, and Threads.
    Operations: Get All, Get One, Create Schedule, Update Schedule, Remove Schedule, Retry Schedule, Remove Schedules (Mass).

Addons

  • Repliz Addon <Badge type="danger" text="Premium+" />
    Access additional helper utilities.
    Operations: Get TikTok Music, Get Shopee Product, Get Link Metadata.

Advanced Usage Notes

Repliz Schedule Payloads

When using the Create Schedule or Update Schedule operations, you can pass structured JSON data for advanced fields:

Medias Payload

An array of media items to attach to the scheduled post:

json
[
  {
    "type": "image",
    "url": "https://storage.repliz.com/image.png",
    "thumbnail": "https://storage.repliz.com/thumb.png",
    "alt": "Image description text"
  }
]

Replies Payload

An array of automatic follow-up comments to post after publishing:

json
[
  {
    "type": "text",
    "description": "Thanks for watching! Check out the link in bio."
  }
]

Additional Info

Configure specific metadata like tags, collaborator IDs, trending music, or product attachments:

json
{
  "isAiGenerated": false,
  "isDraft": false,
  "tags": ["marketing", "automation"],
  "mentions": ["replizofficial"],
  "collaborators": [],
  "products": [],
  "music": { "id": "", "artist": "", "name": "", "thumbnail": "" },
  "link": ""
}

API Plan Limits

Make sure your Repliz subscription plan matches the tier requirement of the nodes you want to trigger (e.g., Gold plan is required for Chat, Content, and Social Account nodes, while Premium is required for Scheduling and Addons).