VeroID

VeroID Documentation

Integrate Australian identity verification into your application. Verify driver's licences, passports, Medicare cards, and more through the Document Verification Service (DVS).

Quick Links

Simple Integration

Verify identity documents with a single API call

verify.ts
const response = await fetch('https://api.veroid.com.au/v1/verify', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'sk_live_your_api_key'
  },
  body: JSON.stringify({
    documentType: 'drivers_licence',
    givenName: 'John',
    familyName: 'Smith',
    dateOfBirth: '1990-01-15',
    licenceNumber: '12345678',
    stateOfIssue: 'NSW'
  })
});

const result = await response.json();
// { success: true, match: true, verificationId: "ver_..." }