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 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-chatwork-api

v1.0.2

Published

Provides n8n nodes to retrieve data from Chatwork API.

Downloads

117

Readme

CI

n8n-nodes-chatwork-api

n8n.io - Workflow Automation

This is a n8n community node. It lets you use ChatWork in your n8n workflows.

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations/Apis

  • /me - Used to access your account information
    • [x] GET /me - Get your account information
  • /my - Used to access your data on the account.
    • [x] GET /my/status - Get the number of: unread messages, unread To messages, and unfinished tasks.
    • [x] GET /my/task - Get the list of all unfinished tasks.
  • /contacts - Used to access the list of your contacts
    • [x] GET /contacts - Get the list of your contacts
  • /rooms - Used to access information such as messages, members, files, and tasks associated to a specific conversation.
    • [x] GET /rooms - Get the list of all chats on your account
    • [x] POST /rooms - Create a new group chat
    • [x] GET /rooms/{room_id} - Get chat name, icon, and Type (my, direct, or group)
    • [x] PUT /rooms/{room_id} - Change the title and icon type of the specified chat
    • [x] DELETE /rooms/{room_id} - Leave/Delete a group chat
    • [x] GET /rooms/{room_id}/members - Get the list of all chat members associated with the specified chat
    • [x] PUT /rooms/{room_id}/members - Change associated members of group chat at once
    • [x] GET /rooms/{room_id}/messages - Get all messages associated with the specified chat
    • [x] POST /rooms/{room_id}/messages - Add new message to the chat
    • [x] GET /rooms/{room_id}/messages/{message_id} - Get information about the specified message
    • [x] PUT /rooms/{room_id}/messages/{message_id} - Update the specified message
    • [x] DELETE /rooms/{room_id}/messages/{message_id} - Delete the specified message
    • [x] GET /rooms/{room_id}/tasks - Get the list of tasks associated with the specified chat
    • [x] POST /rooms/{room_id}/tasks - Add a new task to the chat
    • [x] GET /rooms/{room_id}/tasks/{task_id} - Get information about the specified task
    • [x] GET /rooms/{room_id}/files - Get the list of files associated with the specified chat
    • [x] GET /rooms/{room_id}/files/{file_id} - Get information about the specified file

Credentials