n8n-nodes-fuzzy-record-linking
v1.0.0
Published
Fuzzy record linking for n8n. Link records based on fuzzy matching.
Maintainers
Readme

n8n-nodes-chat-data
This is the official n8n integration for Chat Data. It provides nodes to interact with the ChatData platform, allowing you to manage chatbots, send messages, retrieve leads, and more.
Prerequisites
To use the ChatData integration, you must have:
- A paid ChatData account. You can create an account at chat-data.com.
- Your ChatData API key, which you can obtain from your account settings.
Installation
Follow these steps to install this node in your n8n instance:
npm install n8n-nodes-chat-dataFor n8n desktop app/local installation:
n8n-node-dev --install n8n-nodes-chat-dataNode Reference
Chat Data
This node can be found in the 'Action' category in n8n.
Operations
The operations in this node are organized into the following categories:
Action
- Send a Message: Send a chat message to a chatbot
- Get Leads: Retrieve customer leads from a chatbot
- Get Conversations: Retrieve conversation history from a chatbot
Chatbot
- Create Chatbot: Set up a new AI-powered chatbot
- Retrain Chatbot: Update a chatbot with new data
- Update Base Prompt: Modify a chatbot's base prompt
- Get Chatbot Training Status: Check the status of a chatbot's training
Other
- Make API Call: Make a custom request to any Chat Data API endpoint
Chat Data Trigger
This node is used to receive real-time events from Chat Data via webhooks. You can find it in the 'Trigger' category in n8n.
Available Triggers
- On New Message: Triggered when a new chat message is received
- On Lead Submission: Triggered when a customer submits lead information
- On Live Chat Escalation: Triggered when a chat is escalated to a human agent
- After setting up the trigger, you'll see webhook registration details in the execution output
- When a webhook event is received, the node logs detailed information about:
- Raw webhook payload
- Parsed event data
- Event type matching
- Chatbot ID verification
Note: If your webhook isn't triggering as expected, check the n8n logs for messages starting with "Webhook triggered" to see detailed information about incoming data.
Important: For webhook testing, ensure the
chatbot_idin your trigger configuration matches thechatbot_idfield in the incoming webhook payload.
Fuzzy Record Linking
A powerful node for linking records between two datasets using advanced fuzzy matching techniques. Perfect for data deduplication, record linkage, and merging datasets without exact keys.
Key Features
- 7 Matching Algorithms: Levenshtein, Jaro-Winkler, Token Sort/Set, Partial, Weighted Ratio, and Dice Coefficient
- Multi-Field Matching: Match on multiple fields with custom weights
- Advanced Preprocessing: Text normalization, cleaning, and transformation options
- Flexible Output: Best match, all matches, or one-to-one matching modes
- Confidence Scores: Includes overall and field-level match scores
Use Cases
- Customer data deduplication
- Product matching across e-commerce platforms
- Lead enrichment with existing databases
- Address standardization and matching
- Name matching with typos or variations
Quick Start
- Connect two inputs: Source Dataset and Target Dataset
- Configure field mappings (e.g.,
email→email_address) - Choose a matching algorithm (recommend starting with "Weighted Ratio")
- Set a match threshold (80-90 is typical)
- Configure preprocessing options (enable lowercase and trim)
For detailed documentation, see Fuzzy Record Linking Documentation.
Migration Notice
If you are upgrading from a previous version:
Triggers (webhook-based events) have been moved from the main Chat Data node to a new, dedicated node called Chat Data Trigger. Please update your workflows to use the new trigger node for webhook-based automations.
Authentication
This node requires an API Key for authentication. To set this up:
Create an API key in your ChatData account:
- Log in to your ChatData account
- In the top right corner, click your Username > Account Settings
- In the API Keys section, click Create a new secret key
- Copy the API key value
In n8n, create a new credential:
- Choose "ChatDataApi" as the credential type
- Enter your API key in the API Key field
- Enter your Chat Data instance URL (usually https://app.chat-data.com)
- Save the credential
