Package Information
Downloads: 0 weekly / 0 monthly
Latest Version: 2.0.2
Author: Ammar Alshuaibi
Available Nodes
Documentation
n8n-nodes-cloudconvert-complete
This is an n8n community node for CloudConvert - a powerful file conversion API that supports 200+ formats.
n8n is a fair-code licensed workflow automation platform.
Features
This node provides full access to the CloudConvert API v2, including:
Resources & Operations
Job
- Create - Create a new conversion job with multiple tasks
- Get - Retrieve job details by ID
- Get Many - List all jobs with filtering
- Delete - Delete a job
- Wait - Wait for a job to complete (sync API)
Task
- Create - Create individual tasks (convert, import, export, etc.)
- Get - Retrieve task details by ID
- Get Many - List all tasks with filtering
- Delete - Delete a task
- Cancel - Cancel a running task
- Retry - Retry a failed task
- Wait - Wait for a task to complete (sync API)
File Operations
- Convert - Convert files between 200+ formats (PDF, DOCX, JPG, PNG, MP4, etc.)
- Capture Website - Screenshot websites as PDF, PNG, JPG, or WebP
- Create Thumbnail - Generate thumbnails from images or videos
- Add Watermark - Add text or image watermarks
- Merge - Merge multiple PDF files into one
- Create Archive - Create ZIP, RAR, TAR, 7Z archives
Operation
- Get Formats - List all available conversion formats and operations
User
- Get Me - Get current user information and credits
Installation
Community Nodes (Recommended)
- Go to Settings > Community Nodes
- Click Install
- Enter
n8n-nodes-cloudconvert-complete - Click Install
Manual Installation
npm install n8n-nodes-cloudconvert-complete
Credentials
To use this node, you need a CloudConvert API key:
- Sign up at CloudConvert
- Go to API Settings
- Create a new API key with the required scopes
- Copy the API key
Available Scopes
user.read- Read user informationtask.read- Read taskstask.write- Create and manage taskswebhook.read- Read webhookswebhook.write- Create webhooks
Sandbox Mode
CloudConvert provides a sandbox environment for testing. Enable "Sandbox Mode" in the credentials to use the sandbox API (api.sandbox.cloudconvert.com).
Usage Examples
Convert PDF to JPG
- Add a CloudConvert node
- Select File resource and Convert operation
- Set input source to URL and provide the PDF URL
- Set output format to jpg
- Enable Wait for Completion to get the result immediately
- Optionally enable Download Result to get the file as binary data
Capture Website Screenshot
- Add a CloudConvert node
- Select File resource and Capture Website operation
- Enter the website URL
- Choose output format (PDF, PNG, JPG, WebP)
- Configure capture options (full page, screen size, etc.)
Create a Conversion Job
- Add a CloudConvert node
- Select Job resource and Create operation
- Define tasks in JSON format:
{
"import-file": {
"operation": "import/url",
"url": "https://example.com/document.pdf"
},
"convert-file": {
"operation": "convert",
"input": "import-file",
"output_format": "jpg",
"pages": "1-5"
},
"export-file": {
"operation": "export/url",
"input": "convert-file"
}
}
Merge PDF Files
- First, import your PDF files using separate CloudConvert nodes or HTTP Request nodes
- Add a CloudConvert node with File > Merge operation
- Enter the task IDs of the imported files
- The merged PDF will be exported
Supported Formats
CloudConvert supports 200+ formats including:
- Documents: PDF, DOCX, DOC, XLSX, XLS, PPTX, PPT, ODT, RTF, TXT, HTML
- Images: JPG, PNG, GIF, BMP, TIFF, WebP, SVG, ICO, HEIC
- Video: MP4, AVI, MOV, MKV, WebM, FLV, WMV
- Audio: MP3, WAV, AAC, FLAC, OGG, WMA
- Archives: ZIP, RAR, 7Z, TAR, TAR.GZ
- eBooks: EPUB, MOBI, AZW
- CAD: DWG, DXF
See the full list of supported formats.
API Rate Limits
CloudConvert has the following rate limits:
- Concurrent Jobs: 5 (Free) / 100+ (Paid)
- Minutes per day: 25 (Free) / Unlimited (Paid)
See CloudConvert Pricing for details.
Resources
License
Author
Created by Ammar Alshuaibi