@humanos-ai/n8n-nodes
v1.0.0
Published
n8n community nodes for integrating with the Humanos API - KYC, identity verification, and credential management
Maintainers
Readme
@humanos-ai/n8n-nodes

This is an n8n community node package for integrating with the Humanos API. It provides nodes for KYC verification, identity management, credential requests, and webhook handling.
n8n is a fair-code licensed workflow automation platform.
Installation
Follow the installation guide in the n8n community nodes documentation.
npm
npm install @humanos-ai/n8n-nodesIn n8n
- Go to Settings > Community Nodes
- Select Install
- Enter
@humanos-ai/n8n-nodesand click Install
Nodes
This package includes the following nodes:
| Node | Description | | --------------------------------- | ------------------------------------------------------------------------------ | | Humanos: List Requests | Retrieve credential requests with filtering and pagination | | Humanos: Create Request | Create a new credential request for users | | Humanos: Get Request Detail | Get detailed information about a specific request | | Humanos: Cancel Request | Cancel an existing credential request | | Humanos: Resend OTP | Resend OTP verification to a user | | Humanos: List Resources | List available resources (documents, forms, consents) | | Humanos: List Resource Groups | List resource groups | | Humanos: Download Resource | Download a completed credential as PDF | | Humanos: Create User | Import users into Humanos | | Humanos GET | Perform custom GET requests to the Humanos API | | Humanos Webhook | Trigger workflows on Humanos events (KYC completed, signature completed, etc.) |
Credentials
To use these nodes, you need to configure the Humanos API credentials:
| Field | Description | | -------------------- | ----------------------------------------------------------------- | | API Base URL | Select environment (Development/Production) or enter a custom URL | | API Key | Your Humanos API key (Bearer token) | | Signature Secret | Secret key for HMAC-SHA256 request signing |
Getting Your API Credentials
- Log in to your Humanos Dashboard
- Navigate to Settings > API Keys
- Create a new API key and note the signature secret
Webhook Events
The Humanos Webhook node can listen for the following events:
otp.failed- OTP verification failedidentity- KYC/identity verification completedcredential- Credential (PDF signature, form, consent, or payment) issued
API Documentation
For detailed API documentation, visit:
Development
Building
npm install
npm run buildLocal Testing
Link the package to your local n8n installation:
npm link
cd ~/.n8n/custom
npm link @humanos-ai/n8n-nodesThen restart n8n to load the nodes.
