Description
n8n-nodes-apiverve



This is an n8n community node that lets you use APIVerve in your n8n workflows.
APIVerve provides 356+ fast, reliable utility APIs for validation, conversion, generation, analysis, and lookup operations. One node, hundreds of APIs.
n8n is a fair-code licensed workflow automation platform.
—
Table of Contents
- Installation
- Credentials
- Operations
- Node Reference
- Usage Example
- Response Format
- Error Handling
- Development
- Compatibility
- Troubleshooting
- Resources
- Version History
- License
– n8n Cloud
– n8n Desktop
– Self-hosted n8n (npm)
– Self-hosted n8n (Docker)
– API Resource
– JSON Bin Resource
– Analytics Resource
– Prerequisites
– Local Setup
– Testing
—
Installation
n8n Cloud
1. Log in to your n8n Cloud instance
2. Go to Settings → Community Nodes
3. Select Install a community node
4. Enter: @apiverve/n8n-nodes-apiverve
5. Agree to the risks and click Install
The node will appear in the nodes panel under APIVerve.
n8n Desktop
1. Open n8n Desktop
2. Go to Settings → Community Nodes
3. Click Install a community node
4. Enter: @apiverve/n8n-nodes-apiverve
5. Click Install
6. Restart n8n Desktop
Self-hosted n8n (npm)
Navigate to your n8n installation directory
cd /path/to/n8nInstall the package
npm install @apiverve/n8n-nodes-apiverveRestart n8n
pm2 restart n8n
or
systemctl restart n8n
Self-hosted n8n (Docker)
Add the package to your N8NCUSTOMEXTENSIONS environment variable:
docker-compose.yml
services:
n8n:
image: n8nio/n8n
environment:
- N8NCUSTOMEXTENSIONS=@apiverve/n8n-nodes-apiverve
Or install in a running container:
docker exec -it n8n npm install @apiverve/n8n-nodes-apiverve
docker restart n8n
—
Credentials
This node uses OAuth2 authentication to securely connect to your APIVerve account.
Setting Up OAuth2
1. Sign up at apiverve.com (free tier includes 100 requests/day)
2. In n8n, go to Credentials → Add Credential
3. Search for APIVerve OAuth2 API
4. Click Sign in with APIVerve to authorize
5. Grant access to your APIVerve account
6. Click Save
Your OAuth2 tokens will be automatically managed and refreshed by n8n.
—
Operations
The APIVerve node provides three resources:
API Resource
Execute any of the 356+ available APIs:
| Operation | Description |
|———–|————-|
| Execute | Run any APIVerve API with custom parameters |
APIs are organized into 29 categories including:
JSON Bin Resource
Store and retrieve JSON data:
| Operation | Description |
|———–|————-|
| List | List all JSON Bins |
| Get | Get a JSON Bin by ID |
| Update | Update a JSON Bin |
Create and delete Bins in the APIVerve Dashboard.
Analytics Resource
View usage statistics (Pro+ plans):
| Operation | Description |
|———–|————-|
| Get Current Usage | Get current usage statistics |
—
Node Reference
API Selection
| Property | Type | Required | Description |
|———-|——|———-|————-|
| API | Dropdown | Yes | Select an API from the dynamically-loaded list. APIs are grouped by category. |
The API list is fetched dynamically when you open the dropdown, ensuring you always have access to the latest APIs.
Parameters
| Property | Type | Required | Description |
|———-|——|———-|————-|
| Parameters (JSON) | JSON | No | API parameters as a JSON object. Leave as {} for APIs with no parameters. |
Parameters vary by API. Common parameters include:
email — Email address for validation APIsurl — URL for web-related APIstext — Text content for analysis APIsvalue — Input value for conversion/generation APIsSee the API documentation for specific parameter requirements.
—
Usage Example
Validate an Email Address
Configuration:
Email Validator{"email": "user@example.com"}Output:
{
"status": "ok",
"error": null,
"data": {
"valid": true,
"email": "user@example.com",
"domain": "example.com",
"disposable": false,
"mx_found": true
}
}
—
Response Format
All APIVerve APIs return a consistent response structure:
{
"status": "ok",
"error": null,
"data": {
// API-specific response data
}
}
| Field | Type | Description |
|——-|——|————-|
| status | string | "ok" for success, "error" for failure |
| error | string|null | Error message if status is error, otherwise null |
| data | object|null | API response data, null if error |
Alternative Formats
Use the Response Format option to receive data in different formats:
application/jsonapplication/xmlapplication/x-yamltext/csv (for tabular data)—
Error Handling
The node handles errors gracefully and provides detailed error information:
| HTTP Status | Error Type | Description |
|————-|————|————-|
| 400 | Bad Request | Invalid parameters or missing required fields |
| 401 | Unauthorized | Invalid or missing API key |
| 403 | Forbidden | API access not allowed for your plan |
| 404 | Not Found | API endpoint not found |
| 429 | Rate Limited | Too many requests, retry after delay |
| 500 | Server Error | APIVerve server error |
Error Response Example
{
"status": "error",
"error": "Missing required parameter: email",
"data": null
}
Continue on Fail
Enable Continue on Fail in the node settings to prevent workflow execution from stopping on API errors. The error will be captured in the output for handling in subsequent nodes.
—
Development
Prerequisites
Local Setup
1. Clone the repository:
git clone https://github.com/apiverve/n8n-nodes-apiverve.git
cd n8n-nodes-apiverve
2. Install dependencies:
npm install
3. Build the project:
npm run build
4. Link to your local n8n installation:
# Create the custom nodes directory if it doesn't exist
mkdir -p ~/.n8n/nodes # Create a symlink
ln -s $(pwd) ~/.n8n/nodes/@apiverve/n8n-nodes-apiverve
5. Start n8n:
n8n start
Development Mode
Run TypeScript in watch mode during development:
npm run dev
Linting
Check for issues
npm run lintAuto-fix issues
npm run lintfix
Building
npm run build
This compiles TypeScript and copies icons to the dist folder.
—
Compatibility
| Requirement | Version |
|————-|———|
| n8n | 1.0.0+ |
| Node.js | 18.10+ |
This node has been tested with:
—
Troubleshooting
“No options available” in API dropdown
“Unauthorized” error
“Rate Limited” error
Node not appearing after installation
node_modulesNeed help?
—
Resources
| Resource | Link |
|———-|——|
| APIVerve Website | apiverve.com |
| API Documentation | docs.apiverve.com |
| API Dashboard | dashboard.apiverve.com |
| Browse All APIs | apiverve.com/marketplace |
| n8n Documentation | docs.n8n.io |
| n8n Community Nodes | docs.n8n.io/integrations/community-nodes |
—
Version History
| Version | Date | Changes |
|———|——|———|
| 1.0.0 | 2026-07-17 | Initial release with 356+ APIs |
—
License
Copyright (c) 2026 EvlarSoft LLC and APIVerve