VerifyAI n8n Integration

Wire AI-powered photo verification into your n8n workflows. Self-hosted, version-controlled, and code-friendly automation for teams that want more control than Zapier offers.

Quick Start

1. Install

bash
# Use the VerifyAI HTTP node template (importable from your workflow library)
# Or call the REST API directly with the HTTP Request node:

POST https://api.verify.switchlabs.dev/v1/verifications
Authorization: Bearer vi_live_...
Content-Type: multipart/form-data

image: <binary file>
policy: scooter_parking

2. Use

javascript
// n8n function node — process the response
const result = items[0].json;

if (!result.isCompliant) {
  return [{
    json: {
      alert: 'Verification failed',
      reason: result.feedback,
      verificationId: result.verificationId,
      severity: result.severity,
    },
  }];
}

return [{
  json: {
    verificationId: result.verificationId,
    status: 'verified',
  },
}];

Features

Self-Hosted Friendly

Runs in your own n8n instance — Docker, Kubernetes, or n8n Cloud. Photo data flows through your infrastructure on your terms.

HTTP-First Integration

Use the HTTP Request node to call the VerifyAI REST API directly. No proprietary node required, no version lock-in.

Workflow Templates

Importable workflow templates for common patterns — form-to-verify, webhook-to-CRM, batch-verify-from-database.

Code Nodes

Drop into JavaScript or Python function nodes for custom logic, post-processing, and validation between steps.

Branching & Error Handling

Native if/switch nodes for compliant/non-compliant routing. Built-in retry and error workflow patterns.

Webhook Triggers

Receive VerifyAI completion and flag events directly via n8n's webhook trigger. Power async, high-volume pipelines.

Code Examples

Requirements

  • n8n version 1.0+ (self-hosted or Cloud)
  • VerifyAI API key (free sandbox available)
  • Network access from your n8n instance to api.verify.switchlabs.dev
  • Credentials configured for any destination systems (Postgres, Slack, etc.)

Frequently Asked Questions

Automate Photo Verification With n8n

Self-hosted, version-controlled, infinitely flexible. Start your free sandbox today.

Get in Touch

Questions about pricing, integrations, or custom deployments? We'd love to hear from you.