Built for engineering teams who demand precision and speed.
Integrate identity verification in minutes. Connect through our REST APIs, lightweight mobile SDKs, or real-time event webhooks with zero boilerplate.
import { VerityClient } from "@verity/node";
const verity = new VerityClient({
apiKey: process.env.VERITY_SECRET_KEY,
environment: "production"
});
// Initialize real-time passport and biometric check
const verification = await verity.verifications.create({
type: "document_and_liveness",
document: {
type: "passport",
image: base64PassportBuffer
},
biometrics: {
videoFrame: liveSelfieBuffer,
strictAntiSpoof: true
},
webhookUrl: "https://api.yourdomain.com/webhooks/verity"
});
console.log(`Verification ID: ${verification.id} | Status: ${verification.status}`);
// Output: Verification ID: ver_9a87f1 | Status: verified (42ms)Four steps from sandbox to global production
Constructed for engineering teams requiring sub-second verification latency, typed SDK wrappers, and rigorous data privacy out of the box.
Initialize test credentials with pre-configured developer quotas and automated mock data feeds.
curl -X POST https://api.verity.com/v1/auth/sandbox-keys
-H "Authorization: Bearer dev_sec_99402ab"
-d '{"environment": "sandbox", "tier": "developer"}'Install the lightweight client library across Node.js, Python, or Go with typed request definitions.
import { VerityClient } from "@verity/sdk-core";
const verity = new VerityClient({
apiKey: process.env.VERITY_SANDBOX_KEY,
timeoutMs: 3000,
});Execute automated verification on passports, driver licenses, and utility bills using synthetic data sets.
const result = await verity.documents.verify({
fileUrl: "https://mock.verity.dev/samples/passport-us.webp",
documentType: "PASSPORT",
checks: ["LIVENESS", "OCR_EXTRACT", "TAMPER_DETECT"],
});Promote sandbox keys to live multi-region infrastructure with instant audit trails and SLA guarantees.
// Webhook payload triggered on instant verification
{
"event": "verification.completed",
"status": "APPROVED",
"verification_id": "ver_live_8830192a",
"latency_ms": 382
}Ready to test in our isolated sandbox?
Get started with free test API keys and 10,000 synthetic verification requests.