npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

zapier-qubiton

v0.1.0-dev.829

Published

Zapier integration for the QubitOn API — validate addresses, tax IDs, bank accounts, and screen against global sanctions lists.

Readme

QubitOn — Zapier Integration

Zapier integration for the QubitOn API — validate addresses, tax IDs, bank accounts, and screen against global sanctions lists.

Platform: Zapier (zapier-platform-core 15.x)

Actions

| Action | Endpoint | Description | |--------|----------|-------------| | Address Validation | POST /api/address/validate | Validate and standardize a postal address | | Tax Validation | POST /api/tax/validate | Validate a tax ID (VAT, TIN, GST, etc.) | | Bank Validation | POST /api/bank/validate | Validate a bank account, routing number, or IBAN | | Business Lookup | POST /api/businessregistration/lookup | Look up business registration details | | Sanctions Screening | POST /api/prohibited/lookup | Screen against 90+ global prohibited/watch lists | | Director Check | POST /api/disqualifieddirectors/validate | Check if a person is a disqualified director |

Setup

1. Connect Your Account

  1. In Zapier, create a new Zap
  2. Search for QubitOn in the app directory
  3. Select one of the 6 available actions
  4. Click Sign in to QubitOn
  5. Enter your API key (starts with svm)
  6. Click Yes, Continue — Zapier will test the connection

2. Configure an Action

  1. Select the desired action (e.g., Address Validation)
  2. Map fields from your trigger step:
    • Address Validation: addressLine1, city, country (required), state, postalCode (optional)
    • Tax Validation: taxId, country (required)
    • Bank Validation: accountNumber, country (required), routingNumber, iban (optional)
    • Business Lookup: companyName, country (required)
    • Sanctions Screening: entityName (required), entityType, country (optional)
    • Director Check: companyName, country (required)
  3. Click Test step to verify the response
  4. Use the output fields in subsequent Zap steps

Authentication

All actions use API key authentication. The API key is sent as the apikey HTTP header on every request.

Get your API key from the QubitOn Portal.

Zap Examples

Example 1: Validate New Salesforce Leads

Trigger: New Lead in Salesforce Actions:

  1. QubitOn > Address Validation — Map lead address fields
  2. Filter — Continue only if isValid is false
  3. Salesforce > Update Lead — Flag as "Address Invalid" and add standardized suggestion

Example 2: Screen New Vendors in Google Sheets

Trigger: New Row in Google Sheets (vendor submission form) Actions:

  1. QubitOn > Sanctions Screening — Screen vendor name from column A
  2. QubitOn > Tax Validation — Validate tax ID from column C
  3. Google Sheets > Update Row — Write validation results to columns D-F
  4. Filter — Continue only if hasMatches is true
  5. Gmail > Send Email — Alert compliance team about flagged vendor

Example 3: Multi-step Vendor Onboarding

Trigger: New Submission in Typeform Actions:

  1. QubitOn > Address Validation — Validate vendor address
  2. QubitOn > Tax Validation — Validate vendor tax ID
  3. QubitOn > Bank Validation — Validate bank details
  4. QubitOn > Sanctions Screening — Screen vendor name
  5. Paths — Branch based on validation results:
    • All valid: Create vendor in NetSuite + send welcome email
    • Any invalid: Create task in Asana for manual review

Files

| File | Purpose | |------|---------| | index.js | App definition — registers authentication, actions, and middleware | | authentication.js | API key auth handler and request middleware | | creates/addressValidation.js | Address Validation action | | creates/taxValidation.js | Tax ID Validation action | | creates/bankValidation.js | Bank Account Validation action | | creates/businessLookup.js | Business Registration Lookup action | | creates/sanctionsScreening.js | Prohibited Party Screening action | | creates/directorCheck.js | Disqualified Directors Check action | | package.json | npm package metadata with Zapier platform config |

Error Handling

Zapier automatically retries actions that return 5xx errors. For other errors:

| HTTP Status | Cause | Zapier Behavior | |-------------|-------|-----------------| | 400 | Missing required fields | Zap halted — check field mappings in the action step | | 401 | Invalid API key | Zap halted — reconnect your QubitOn account | | 429 | Rate limit exceeded | Zapier will auto-retry with backoff | | 500 | Server error | Zapier will auto-retry up to 3 times |

Development

cd sdks/zapier
npm install

# Validate the integration
npx zapier validate

# Run tests
npx zapier test

MCP Protocol Support

This API is available as a native Model Context Protocol (MCP) server.

Tools (37), Prompts (20), Resources (7)

| Category | Count | Description | |----------|-------|-------------| | MCP Tools | 37 | 1:1 mapped to API endpoints — same auth, rate limits, and plan access | | MCP Prompts | 20 | Multi-tool workflow templates (onboarding, compliance, risk, payment) | | MCP Resources | 7 | Reference datasets (tool inventory, risk categories, country coverage) |

Prompts may be plan-gated. See Pricing for details.

Getting an API Key

  1. Sign up for a free account at portal.qubiton.com
  2. Navigate to Dashboard > API Keys
  3. Copy your API key (starts with svm)

Support