Next-generation document processing platform combining AI-powered analysis, secure signing workflows, and real-time threat scoring — all on Cloudflare's edge network.
NXV (Next-eXtension Vision) is an AI-powered document intelligence platform that combines advanced threat scoring, secure signing workflows, and intelligent document processing.
Real-time threat scoring with 4-tier escalation system. Every document is analyzed for risk factors before processing begins.
Multi-party signing with complete audit trails. Signatures are cryptographically bound to documents with timestamp verification.
All processing happens at the edge via Cloudflare Workers. Sub-50ms response times worldwide with automatic scaling.
Cloudflare Edge Architecture — Global low-latency document processing
TypeScript serverless functions handling API routes, authentication, and business logic at the edge.
SQLite at the edge. Zero-latency queries from any Cloudflare datacenter worldwide.
S3-compatible object storage for PDF documents with no egress fees within Cloudflare.
Global key-value store for session tokens, nonces, and rate limiting data.
Complete REST API for document management, signing workflows, and system administration
/api/documents
Create new document with optional PDF upload
/api/documents
List all documents with filtering & pagination
/api/documents/:id
Get document details with signers & fields
/api/documents/:id
Update document metadata or status
/api/documents/:id
Delete draft document (signed docs are immutable)
/api/documents/:id/signers
Add signer(s) with role and order assignment
/api/documents/:id/signers
List all signers with completion status
/api/documents/:id/signers/:signerId
Remove signer (only before sending)
/api/documents/:id/send
Send signing invitations to all signers
/api/sign/:token
Get signing session (validates token, returns PDF)
/api/sign/:token/submit
Submit signed document with signature data
/api/documents/:id/audit
Get complete audit trail with timestamps
/api/documents/:id/download
Download signed PDF (HR admin only)
/api/documents/:id/threat-score
Get current threat analysis score
/api/templates
Save document as reusable template
/api/templates
List all available templates
/api/templates/:id/use
Create document from template
/api/webhooks
Register webhook for completion events
Complete database schema with 6 tables, indexes, and constraints for document processing
Real-time threat analysis with multi-factor scoring and automatic escalation
Standard processing. Document enters normal workflow queue.
Enhanced verification. Email confirmation to HR required before sending.
Manual review required. Document paused until HR approves. IP and device logging enabled.
Auto-block. Webhook alert to security team. Document quarantined. All access logged.
Complete MVP delivery in 6 weeks with all core features and integrations
Deployed Cloudflare resources and endpoints
Main API handler on Cloudflare Edge
nxv-worker.pages.dev
Document management interface
nxv-admin.pages.dev
Public signing flow for candidates
sign.nxv.pages.dev
SQLite metadata storage
netsign (prod)
PDF and signed document storage
nxv-documents
Token and session management
nxv-sessions