Skip to main content

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

verify.ts
import { createNoxVerifyClient } from '@noxverify/sdk';

const nox = createNoxVerifyClient({ apiKey: 'nv_live_...' });

const verification = await nox.verifyIdentity({
 type: 'kyc_individual',
 returnUrl: 'https://yourapp.com/callback',
});

API Base URL

https://api.noxverify.com/v1

Authentication

API keys via the Authorization header:

Authorization: Bearer nv_live_...

Key Endpoints

EndpointDescription
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

Full documentation coming soon

Contact us for early API access and integration support.

Contact Sales