Socket
Book a DemoInstallSign in
Socket

n8n-nodes-contentdrips

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-contentdrips

n8n node for Contentdrips API - create carousels and static graphics for social media content automation

1.2.3
latest
Source
npmnpm
Version published
Weekly downloads
322
6340%
Maintainers
1
Weekly downloads
 
Created
Source

n8n-nodes-contentdrips

An n8n community node for the Contentdrips API that enables you to create carousels and static graphics for social media content automation.

Features

  • Generate Static Graphics: Create PNG or PDF graphics from templates
  • Generate Carousels: Create multi-slide carousels with intro, content slides, and ending slides
  • Template-based: Use your existing Contentdrips templates
  • Content Updates: Update text and images using labeled elements
  • Branding Support: Apply consistent branding (name, handle, bio, website, avatar)
  • Job Management: Check status and retrieve results from asynchronous jobs

Installation

n8n Cloud

For n8n Cloud users:

  • Go to Settings > Community Nodes in your n8n Cloud instance
  • Click Install a community node
  • Enter n8n-nodes-contentdrips
  • Click Install

The node will be automatically installed and available in your workflow editor.

Self-hosted n8n

For self-hosted installations, you have several options:

Option 1: Community Nodes UI (Easiest)

  • Go to Settings > Community Nodes in your n8n instance
  • Click Install a community node
  • Enter n8n-nodes-contentdrips
  • Click Install

Option 2: Docker Compose

Add the following to your docker-compose.yml environment variables:

environment:
  - NODE_FUNCTION_ALLOW_EXTERNAL=*

Then modify your Dockerfile or create a custom image:

FROM n8nio/n8n:latest
USER root
RUN npm install -g n8n-nodes-contentdrips
USER node

Option 3: Manual Installation

# Navigate to your n8n installation directory
cd ~/.n8n

# Install the node
npm install n8n-nodes-contentdrips

# Restart n8n

Prerequisites

  • Contentdrips Account: Sign up at Contentdrips
  • API Token: Generate your API token from API Management
  • Templates: Create and configure templates in Contentdrips editor

Configuration

Credentials Setup

  • In n8n, go to Credentials
  • Click + Add Credential
  • Search for Contentdrips API
  • Enter your API token from Contentdrips

Template Preparation

  • Create templates in Contentdrips editor
  • Add labels to text boxes and images you want to update:
    • Right-click on element → "Add Label" → Enter label name
  • Note your template ID from the URL or template settings

Operations

Generate Graphic

Create static graphics (PNG/PDF) from templates:

{
  "operation": "generateGraphic",
  "templateId": "126130",
  "output": "png",
  "branding": {
    "name": "Jane Doe",
    "handle": "@janedoe",
    "bio": "Content Creator",
    "website_url": "https://janedoe.com",
    "avatar_image_url": "https://example.com/avatar.jpg"
  },
  "contentUpdates": [
    {
      "type": "textbox",
      "label": "title_1", 
      "value": "New Post Title"
    }
  ]
}

Create multi-slide carousels:

{
  "operation": "generateCarousel",
  "templateId": "126130",
  "output": "pdf",
  "carousel": {
    "intro_slide": {
      "heading": "Start Here",
      "description": "Tips that work",
      "image": "https://example.com/intro.jpg"
    },
    "slides": [
      {
        "heading": "Tip 1",
        "description": "Post daily content",
        "image": "https://example.com/slide1.jpg"
      }
    ],
    "ending_slide": {
      "heading": "Follow for more", 
      "description": "New tips weekly",
      "image": "https://example.com/end.jpg"
    }
  }
}

Check Job Status

Monitor background job processing:

{
  "operation": "checkJobStatus",
  "jobId": "15bf4a39-876a-4780-aaa9-4be6fe2c61b4"
}

Get Job Result

Retrieve completed job results:

{
  "operation": "getJobResult", 
  "jobId": "15bf4a39-876a-4780-aaa9-4be6fe2c61b4"
}

Example Workflows

  • RSS Trigger → Get new blog posts
  • Code Node → Extract title, summary, and key points
  • Contentdrips Node → Generate carousel with:
    • Intro slide: Blog title and summary
    • Content slides: Key points
    • Ending slide: Call-to-action

Social Media Graphics

  • Schedule Trigger → Daily at 9 AM
  • Google Sheets → Get daily quote and image
  • Contentdrips Node → Generate quote graphic
  • Social Media Node → Post to platforms

API Response Examples

Successful Job Creation

{
  "job_id": "15bf4a39-876a-4780-aaa9-4be6fe2c61b4",
  "status": "queued",
  "message": "Job has been queued for processing",
  "estimated_time": "2-5 minutes"
}

Completed Job Result

{
  "date": "2025-06-02T16:31:18.633Z",
  "type": "carousel", 
  "export_url": "https://contentdrips2.s3.amazonaws.com/server/104017/uploads/carousel-output.pdf"
}

Troubleshooting

Common Issues

  • Authentication Error: Verify your API token in credentials
  • Template Not Found: Check template ID exists and is accessible
  • Label Not Found: Ensure labels are properly set in template editor
  • Job Timeout: Large carousels may take longer to process

Error Handling

The node supports n8n's Continue on Fail option. When enabled, errors are returned as data instead of stopping the workflow.

Support

  • Documentation: Contentdrips API Docs
  • GitHub Issues: Report bugs and feature requests
  • Community Forum: Get help from other users

License

MIT License - see LICENSE.md for details.

Contributing

Contributions are welcome! Please feel free to submit pull requests or open issues for bugs and feature requests.

Keywords

n8n-community-node-package

FAQs

Package last updated on 29 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.