Developer Documentation
Everything you need to integrate identity verification into your application.
Quick Start
REST API
Full REST API with OpenAPI spec. All endpoints documented with request/response schemas.
TypeScript SDK
@noxverify/sdk -- Type-safe client for Node.js and the browser. Install with npm install @noxverify/sdk
Webhooks
Real-time event notifications with HMAC-SHA256 signatures for secure delivery verification.
Integration Example
import { createNoxVerifyClient } from '@noxverify/sdk'
const nox createNoxVerifyClient({ apiKey 'nv_live_...' })
const verification await noxverifyIdentity({
type 'kyc_individual'
returnUrl 'https://yourapp.com/callback'
})API Base URL
https://api.noxverify.com/v1Authentication
API keys via the Authorization header:
Authorization: Bearer nv_live_...Key Endpoints
| Endpoint | Description |
|---|---|
POST /cases | Create a new verification case |
GET /cases/:id | Get case status |
POST /cases/:id/personal-details | Submit personal details |
POST /biometrics/selfie-check | Start biometric check |
POST /aml/screen | Run AML screening |