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.
Enter Business Info
Provide company name, registration number, and address.
Upload Proof
Submit incorporation documents and ownership proof.
Submit for Review
Processing takes 24 hours; track status in the 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
import requests
response = requests.post(
'https://api.example.com/v1/verifications',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
json={
'type': 'idv',
'document': {'front': 'data:image/jpeg;base64,...'},
'selfie': 'data:image/jpeg;base64,...'
}
)
result = response.json()
print(result['verified']) # true/false
curl -X POST https://api.example.com/v1/verifications \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "idv",
"document": {"front": "data:image/jpeg;base64,..."},
"selfie": "data:image/jpeg;base64,..."
}'
Verification type: idv or kyb.
Bearer token obtained from dashboard.
Navigate the Dashboard
Verifications
View all IDV and KYB results.
Agreements
Manage model releases and contracts.
Compliance
Track regulatory status and reports.
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.
Last updated today