BizVerify in n8n.

Nine BizVerify operations on one n8n node — not nine HTTP nodes wired together.

Available on npm as n8n-nodes-bizverify

Install.

  1. 01

    Open n8n Community Nodes

    In n8n, go to Settings → Community Nodes → Install. Search for n8n-nodes-bizverify and install. Self-hosted instances install instantly; n8n Cloud may require a workspace owner to approve community-node access.

  2. 02

    Add the BizVerify API credential

    Create a new credential of type BizVerify API. Paste your API key into the API Key field. The credential is reused across every BizVerify node in every workflow.

  3. 03

    Drop the node into a workflow

    Add a BizVerify node. The Operation dropdown lists all nine operations — Verify Business, Search Entities, Get Entity, and so on. Required fields appear based on the operation you pick.

What n8n exposes.

Nine operations. The same nine across every integration on this site.

  • Verify Business

    Quick or deep verification of an entity in one jurisdiction.

  • Search Entities

    Find entities matching a name in a jurisdiction.

  • Check Job Status

    Poll a long-running verification job by id.

  • Get Entity

    Fetch a previously verified entity from cache.

  • Get Entity History

    Return the verification history for an entity.

  • Get Account

    Read account info and credit balance.

  • Get Config

    Read public service config and supported jurisdictions.

  • List Jurisdictions

    List active jurisdictions and their status.

  • Purchase Credits

    Buy additional credits from the workflow.

One real example.

Webhook → Verify Business → branch on status — n8n workflow JSON fragment

{
  "nodes": [
    {
      "name": "Form Submission",
      "type": "n8n-nodes-base.webhook",
      "parameters": { "path": "signup", "httpMethod": "POST" }
    },
    {
      "name": "Verify Business",
      "type": "n8n-nodes-bizverify.bizVerify",
      "parameters": {
        "operation": "verifyBusiness",
        "entityName": "={{ $json.body.company_name }}",
        "jurisdiction": "={{ $json.body.jurisdiction }}",
        "tier": "quick"
      },
      "credentials": { "bizVerifyApi": "BizVerify Production" }
    },
    {
      "name": "If Active",
      "type": "n8n-nodes-base.if",
      "parameters": {
        "conditions": {
          "string": [{ "value1": "={{ $json.status }}", "operation": "equals", "value2": "active" }]
        }
      }
    }
  ]
}

Why BizVerify for n8n.

  • One node, nine operations

    No fan-out of nine HTTP Request nodes. The Operation dropdown swaps the input form to match the call.

  • Native to n8n's UX

    Credentials, branching, error outputs, and item-based looping all behave the way n8n users expect. No custom JSON handling required.

  • Free during beta

    All nine operations, every jurisdiction we cover, on the free tier. Fifty credits land in your account on signup.

What verification is, and isn't.

We confirm what the official registry currently says about an entity. We don't claim more than that.

BizVerify does

  • Confirms the entity is registered with the official government registry
  • Returns the current registry status (active, dissolved, suspended, etc.)
  • Returns canonical entity name, type, and jurisdiction id

BizVerify does not

  • Verify solvency, credit, or financial standing
  • Verify beneficial ownership or directors/officers (quick check)
  • Verify that the person filling out a form is authorized by the entity
  • Flag sanctions or PEP exposure

Start verifying inside n8n.

Fifty free credits on signup. No card. Same key across every integration on this site.