npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@xnkee/n8n-nodes-canva

v1.0.1

Published

n8n community node for Canva API integration - Create designs, export, manage assets, brand templates, autofill and more

Downloads

181

Readme

n8n-nodes-canva

This is an n8n community node that provides integration with the Canva API.

Canva is a graphic design platform that allows users to create social media graphics, presentations, posters, documents, and other visual content.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

npm

npm install n8n-nodes-canva

n8n GUI

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-canva
  4. Agree to the risks
  5. Select Install

Operations

This node supports the following operations:

Design

  • Create - Create a new design (preset or custom dimensions)
  • Get - Get a design by ID
  • Get Many - List designs with filters
  • Get Pages - Get pages of a design

Export

  • Create - Export a design to PDF, JPG, PNG, GIF, PPTX, or MP4
  • Get - Get export job status

Asset

  • Get - Get an asset by ID
  • Update - Update asset name/tags
  • Delete - Delete an asset
  • Upload - Upload an asset from URL
  • Get Upload Job - Get upload job status

Folder

  • Create - Create a new folder
  • Update - Rename a folder
  • Move Item - Move a design, folder, or asset to a folder

Brand Template (Canva Enterprise)

  • Get - Get a brand template by ID
  • Get Many - List brand templates
  • Get Dataset - Get autofill dataset fields

Autofill (Canva Enterprise)

  • Create - Create an autofill job from brand template
  • Get - Get autofill job status

Comment (Preview)

  • Create Thread - Create a new comment thread
  • Create Reply - Reply to a comment thread
  • Get Thread - Get a comment thread
  • Get Reply - Get a reply
  • Get Many Replies - List replies to a thread

Design Import

  • Create from URL - Import a design from external URL
  • Get - Get import job status

Resize (Canva Pro)

  • Create - Create a resized copy of a design
  • Get - Get resize job status

User

  • Get Me - Get current authenticated user info

Credentials

This node uses OAuth2 authentication with PKCE. You need to:

  1. Create an app in the Canva Developer Portal
  2. Configure OAuth2 in n8n with the following settings:

OAuth2 Configuration

| Field | Value | |-------|-------| | Grant Type | PKCE | | Authorization URL | https://www.canva.com/api/oauth/authorize | | Access Token URL | https://api.canva.com/rest/v1/oauth/token | | Client ID | Your Canva App Client ID | | Client Secret | Your Canva App Client Secret | | Scope | design:permission:write design:meta:read design:permission:read design:content:read comment:read folder:write app:write app:read asset:write folder:permission:read folder:read folder:permission:write comment:write design:content:write asset:read profile:read brandtemplate:meta:read brandtemplate:content:read | | Auth URI Query Parameters | access_type=offline | | Authentication | Header | | Ignore SSL Issues | No (keep unchecked) |

Redirect URI

Set your redirect URI in the Canva Developer Portal to:

https://your-n8n-instance.com/rest/oauth2-credential/callback

Replace your-n8n-instance.com with your actual n8n domain (e.g., n8n.example.com).

Compatibility

  • n8n version 1.0.0 or later
  • Node.js 18.0.0 or later

Resources

License

MIT