Getting StartedQuickstart
Getting Started

Getting Started with vAulth

Set up your vAulth account and complete your first compliance workflow in minutes, from registration to initial identity verification.

Prerequisites

Ensure you have:

  • A valid email address
  • Government-issued ID for individuals or business documents for KYB
  • Access to a webcam for liveness detection (recommended)

Review these requirements to avoid delays during onboarding.

Create Your Account

Sign up for vAulth in under 2 minutes.

Visit Dashboard

Navigate to https://dashboard.example.com and click Sign Up.

Enter Details

Provide your email, create a strong password, and submit the form.

Verify Email

Check your inbox for the verification link from vAulth and click it to activate your account.

Onboarding Process

Choose your verification type based on your role.

Upload Documents

Select your passport or driver's license. The AI scans for authenticity.

Liveness Check

Follow on-screen prompts for a selfie with liveness detection.

Review Results

Wait <30s for approval. Results appear in your dashboard.

Perform Your First Identity Verification via API

Integrate vAulth into your app for automated checks.

const response = await fetch('https://api.example.com/v1/verifications', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    type: 'idv',
    document: { front: 'data:image/jpeg;base64,...' },
    selfie: 'data:image/jpeg;base64,...'
  })
});
const result = await response.json();
console.log(result.verified); // true/false
path
typestring
Required

Verification type: idv or kyb.

header
Authorizationstring
Required

Bearer token obtained from dashboard.

Next Steps

Explore Authentication for API security and Model Releases for contract workflows.

Your first verification unlocks full platform features. Check the dashboard for real-time updates.