Documentation
Everything you need to integrate Verit into your lending workflow
Browse Documentation
Getting Started
Quick start guide to get up and running with Verit
Configuration
Customize Verit for your organization
Security
Security best practices and compliance
Popular Guides
Step-by-step tutorials for common tasks
Integrate the Customer Verification Portal
Learn how to send verification links to applicants
10 min read
Configure Income Verification Waterfall
Set up primary and fallback income providers
8 min read
Interpret Fraud Scores and Reason Codes
Understand fraud signals and make decisions
12 min read
Set Up Webhooks
Receive real-time updates on verification status
6 min read
Get Started in Minutes
Submit your first verification request with just a few lines of code
Create Application
const response = await fetch('https://api.verit.io/v1/applications', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
external_id: 'your-loan-id-123',
applicant: {
first_name: 'John',
last_name: 'Doe',
email: 'john@example.com',
phone: '+15551234567'
},
vehicle: {
vin: '1HGBH41JXMN109186'
},
delivery: {
method: 'sms'
}
})
});
const { application_id, verification_link } = await response.json();