Package Information
Documentation
n8n-nodes-formfex
n8n community node for Formfex — AI-powered form infrastructure and data collection platform.
Create forms, collect responses, trigger automations, and generate forms with AI directly from your n8n workflows.
Installation
Community Nodes (Recommended)
- Go to Settings > Community Nodes in your n8n instance
- Click Install a community node
- Enter
n8n-nodes-formfex - Click Install
Manual Installation
cd ~/.n8n/nodes
npm install n8n-nodes-formfex
Restart n8n after installation.
Credentials
You need a Formfex API key to use this node.
- Log in to Formfex
- Go to Account > Integrations > API Keys
- Click Create and select the permissions you need
- Copy the key (format:
fxk_live_<keyId>.<secret>) - In n8n, add a new Formfex API credential and paste the key
API keys require a Starter plan or higher.
Nodes
Formfex
Regular node with three resources:
Form Operations
| Operation | Description |
|---|---|
| Create | Create a new form |
| Get | Get a form by ID |
| Get Many | List forms (with pagination and search) |
| Update | Update a form |
| Delete | Delete a form |
| Publish | Publish a form |
| Unpublish | Unpublish a form |
Response Operations
| Operation | Description |
|---|---|
| Get | Get a single response by ID |
| Get Many | List responses (with date filters and pagination) |
AI Operations
| Operation | Description |
|---|---|
| Generate Form | Generate a form from a text prompt using AI (polls until complete) |
| Get Job Status | Check the status of an AI generation job |
| Smart Analytics | Dispatch an async smart analytics report (results sent to callback URL) |
| Analytics Chat | Ask natural language questions about form analytics data |
Formfex Trigger
Polling trigger that watches for new form responses.
| Parameter | Description |
|---|---|
| Form ID | The UUID of the form to watch |
The trigger polls periodically and returns any new responses since the last check. Configure the polling interval in your n8n workflow settings.
AI Agent Tool Mode
The Formfex node has usableAsTool: true, which means it can be used as a tool inside n8n AI Agent nodes. This allows AI agents to autonomously create forms, fetch responses, and generate analytics.
Supported Languages
Formfex supports 6 languages for form generation and content:
- English (
en) - Turkish (
tr) - Spanish (
es) - Italian (
it) - German (
de) - Dutch (
nl)
API Scopes
When creating an API key, select the scopes your workflow needs:
| Scope | Description |
|---|---|
FORMS_READ |
List and view forms |
FORMS_WRITE |
Create, edit, delete forms |
RESPONSES_READ |
List and view form submissions |
WEBHOOKS_READ |
List and view webhooks |
WEBHOOKS_WRITE |
Create, edit, delete webhooks |
AI_GENERATE |
Generate forms with AI |
ANALYTICS_READ |
Access smart analytics and analytics chat |

