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

API Reference

Complete API documentation with examples

Configuration

Customize Verit for your organization

Security

Security best practices and compliance

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();