Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@validpay/node-sdk

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@validpay/node-sdk

ValidPay Node.js SDK — Document verification and authentication API client

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
323
134.06%
Maintainers
1
Weekly downloads
 
Created
Source

@validpay/node-sdk

Official Node.js SDK for the ValidPay document verification API.

Overview

ValidPay provides cryptographic document verification infrastructure. This SDK enables issuers (banks, fintechs, check printers) to create tamper-proof verification intents and allows verifiers to authenticate documents in real-time.

Installation

npm install @validpay/node-sdk

Quick Start

import { ValidPayClient } from '@validpay/node-sdk';

const client = new ValidPayClient({
  apiKey: process.env.VALIDPAY_API_KEY,
});

// Create a verification intent
const intent = await client.createIntent({
  documentType: 'check',
  payload: { payee: 'Jane Doe', amount: 1500.00 },
});

// intent.id → embed in QR code
// intent.verifyUrl → direct verification link

Features

  • Zero production dependencies (Node built-in crypto + native fetch)
  • ESM-only, TypeScript-first
  • AES-256-GCM encryption with client-side key generation
  • XOR key splitting for multi-party verification
  • Automatic retry with exponential backoff

Documentation

Full API documentation: https://validpay.io/docs

Status

Private Beta — Contact mike@validpay.io for API access.

License

MIT — Copyright (c) 2026 MiLu Technologies LLC

Keywords

validpay

FAQs

Package last updated on 12 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts